This is for showing no moderators on showgroups.php
It's untested, but you could open up admin/usergroup.php
Find:
PHP Code:
if (($usergroupid != 1 and $usergroupid != 2 and $usergroupid != 3 and $usergroupid != 4 and $usergroupid != 7) or $usergroup['showgroup'] == 1) {
and replace that with:
PHP Code:
if (($usergroupid != 1 and $usergroupid != 2 and $usergroupid != 3 and $usergroupid != 4 ) or $usergroup['showgroup'] == 1) {
It should work though