XenForo Tutorials

How to add user awaiting info on mod bar ?

Submitted by theezy, , Thread ID: 854

Thread Closed
theezy
Closed Account
Level:
0
Reputation:
7
Posts:
191
Likes:
12
Credits:
128
30-01-2015, 08:57 AM
#1
[Image: ys4o5E6.png]



ACP > your style > template > moderator_bar > Find this lines

Code:
<span class="itemCount {xen:if {$session.reportCounts.total}, 'alert'}">{$session.reportCounts.total}</span>
        </a>
      </xen:if>



Add these code below of the line


Code:
<xen:if is="{$visitor.is_admin} AND {$session.canAdminUsers}">
    <a href="admin.php?users/moderated" class="userModerationQueue modLink">
    <span class="itemLabel">{xen:phrase users_awaiting_approval}:</span>
    <span class="itemCount {xen:if {$session.userModerationCounts.total}, 'alert'}">{$session.userModerationCounts.total}</span>
    </a>
    </xen:if>



Save and your done :D!

Users browsing this thread: 1 Guest(s)