Staff Online (sidebar)

Edit the sidebar_online_users template and wrap the staff block in xen:comment tags.

Code:
<xen:comment>
<!-- block: sidebar_online_staff -->
<xen:if hascontent="true">
    <div class="section staffOnline avatarList">
        <div class="secondaryContent">
            <h3>{xen:phrase staff_online_now}</h3>
            <ul>
                <xen:contentcheck>
                    <xen:foreach loop="$onlineUsers.records" value="$user">
                        <xen:if is="{$user.is_moderator} OR {$user.is_admin}">
                            <li>
                                <xen:avatar user="$user" size="s" img="true" />
                                <xen:username user="$user" rich="true" />
                                <div class="userTitle">{xen:helper userTitle, $user}</div>
                            </li>
                        </xen:if>
                    </xen:foreach>
                </xen:contentcheck>
            </ul>
        </div>
    </div>
</xen:if>
<!-- end block: sidebar_online_staff -->
</xen:comment>


Or add this to EXTRA.css:
Code:
.section.staffOnline.avatarList {
display: none;
}
 
Just remember using EXTRA.css will still allow the source code to be viewed and see a list of staff.

Using xen:comment tags the content isn't rendered at all.
 
Top Bottom