Removing Forum Moderators from Staff Online

Oscar

New member
Hi there,
Does anyone know a way to remove Forum Moderators from the 'Staff Online' box? I still need it to display Global Moderators and Administrators though. I've done a few searches and can't find anything at all.

I have users who have moderating rights in their own project forums, but they are not part of the main staff team - so I don't want to show them as Staff Online.
 
I'm not sure if that'd be easily possible. Have you got section moderators and global moderators separated, or are they all set to moderator and part of the moderating usergroup?
 
Open sidebar_online_users
find:
Code:
<xen:if is="{$user.is_moderator} OR {$user.is_admin}">

replace:
Code:
<xen:if is="{xen:helper ismemberof, $user, 4} OR {$user.is_admin}">
This will only display the online users who are part of the Moderating usergroup (i.e. your Super Moderators)
 
Top Bottom