sidebar_online_staff (Does not exisit?)

BioRage

Member
Hello, I just recently installed 1.1.2 of xenforo (and just purchased;)

(I'm really new to xenforo)

And I uploaded a skin, however, it doesn't show my "ONLINE STAFF"; Nor do I have the template, which is funky!

The addon's I'm using are:

xenporta

site @ www.Mytatrea.net


I read this; and I looked for it on google, however sidebar_online_staff I don't have this template;

Any ideas?


p.s. - Yes, I'm an admin, my status bar shows my tag, etc, name red, but not with members online :s
Code:
<!-- 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}">
[COLOR=#ff0000]<xen:if is="{$user.user_id} != 1">[/COLOR]
<li>
<xen:avatar user="$user" size="s" img="true" />
<xen:username user="$user" rich="true" />
<div class="userTitle">{xen:helper userTitle, $user}</div>
</li>
[COLOR=#ff0000]</xen:if>[/COLOR]
</xen:if>
</xen:foreach>
</xen:contentcheck>
</ul>
</div>
</div>
</xen:if>
<!-- end block: sidebar_online_staff -->
 
Top Bottom