MyBB Hacks

Full Version: Memberships in Profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
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'];

thank you
Pages: 1 2 3
Reference URL's