You can show all staff members in one list but without forums by:
Edit showgroups_usergroup and leave just the following in the template:
Then, in SHOWGROUPS, replace:
with:
Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="3">$user[title]</td>
</tr>
<tr>
<td class="thead"> </td>
<td class="thead" width="100%">$vbphrase[user_name]<if condition="$show['locationfield']"> / $vbphrase[location_perm]</if></td>
<td class="thead">$vbphrase[contact]</td>
</tr>
$usergroups
</table>
<br />
That gets all your usergroup staff into one listing (although it doesn't display them alphabetically, still in group order). I haven't yet figured out how to get the moderated forums to be listed with the usergroups but I'm definitely trying as I want to do that myself - I think it is something that would have to be done through the PHP files unfortunately.