On your new page (the
showgroups.php that you copied and renamed), change the following line:
Code:
WHERE (usergroup.genericoptions & " . $vbulletin->bf_ugp_genericoptions['showgroup'] . ")
to
Code:
WHERE usergroup.usergroupid=12345
Change
12345 to whatever the ID for your new group is.
Also, change this line:
PHP Code:
define('THIS_SCRIPT', 'showgroups');
Change
showgroups to whatever the page is called.
No need to use your copied template, unless you made changes to it.
--------------- Added [DATE]1344126854[/DATE] at [TIME]1344126854[/TIME] ---------------
Oh, also take out the whole IF block for showing Moderators. Begins with:
PHP Code:
if ($vbulletin->options['forumleaders'] == 1)