Hide Admins so they are not in staff online...

Kim

Well-known member
How would I go about not having a couple of Admins on my forum from the Staff Online list?

Basically I don't want myself and another admin to show as such... only one Admin account (the super admin)
 
You could do a template edit for sidebar_online_users:

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

To
Code:
<xen:if is="{$user.is_moderator}">

But if you are also a moderator then you will still show up.

Otherwise you could add another conditional for your user IDs.
 
Top Bottom