Hello, I would like to ask you, is it possible to display a field from the contact info inside the User management page? Let's say I want to replace the Group with something else.
I tried to replace the line code which displays the Group name with the name of the field:
Code:
<td><?php echo $row->groupname; ?></td>
like so:
Code:
<td><?php echo $row->cb_filedname; ?></td>
but obviously it didn't worked :lol:
Is it even possible or does it require a lot of code?