How can i add the GID number beside the usergroup name?
For primary usergroup, you can user
{$memprofile['usergroup']} directly inside the template.
For the additional usergroups, change this line of the plugin:
PHP Code:
$sec_groups .= $comma.format_name($ug['title'], $ug['gid'], 0);
|
to something like this:
PHP Code:
$sec_groups .= $comma.format_name($ug['title'], $ug['gid'], 0).' '.$ug['gid'];
|