Hide Ninja Mods?

taylor_smith

Well-known member
Our community allows clans/guides to host their own forums with their own moderators. These moderators are given mod powers in their respective nodes, but they aren't placed into the moderators group. Is there a way to hide these folks from Staff Online Now?

One idea I had was to take this:

Code:
<xen:if is="{$user.is_moderator} OR {$user.is_admin} OR {$user.user_group_id} == 11">


Remove "{$user.is_moderator}" and add "{$user.user_group_id} == X", where X is the user group number for the moderator group. Am I missing any potential ramifications? Unintended consequences are the devil.
 
The Moderator user group doesn't denote whether a user is staff or not, only explicitily making them an administrator or moderator does that.
User groups are for permissions and markup.

So your proposal above will work fine.
You can even use the default Moderator user group ID (4) and have a different user group for the other moderators.
 
Top Bottom