unillogical Member Licensed customer Apr 15, 2012 #1 I want it so only admins appear in the "Staff Online Now" block. the reason is that we have non-staff members who moderate specific forums who aren't staff whereas all the actual moderators have admin permissions. Is there a way to achieve this?
I want it so only admins appear in the "Staff Online Now" block. the reason is that we have non-staff members who moderate specific forums who aren't staff whereas all the actual moderators have admin permissions. Is there a way to achieve this?
P Paul B XenForo moderator Staff member Licensed customer Apr 15, 2012 #2 Edit the sidebar_online_users template and change this: Code: <xen:if is="{$user.is_moderator} OR {$user.is_admin}"> To this: Code: <xen:if is="{$user.is_admin}"> Upvote 0 Downvote
Edit the sidebar_online_users template and change this: Code: <xen:if is="{$user.is_moderator} OR {$user.is_admin}"> To this: Code: <xen:if is="{$user.is_admin}">
unillogical Member Licensed customer Apr 15, 2012 #3 Brogan said: Edit the sidebar_online_users template and change this: Code: <xen:if is="{$user.is_moderator} OR {$user.is_admin}"> To this: Code: <xen:if is="{$user.is_admin}"> Click to expand... You are a star! Upvote 0 Downvote
Brogan said: Edit the sidebar_online_users template and change this: Code: <xen:if is="{$user.is_moderator} OR {$user.is_admin}"> To this: Code: <xen:if is="{$user.is_admin}"> Click to expand... You are a star!