Usergroup styling in users online list

As Brogan posted, make the following changes.... :)

Sidebar Display
In a default installation, user group styling does not apply to the Staff Online Now andMembers Online Now blocks in the sidebar.
To enable styling to show in these locations, the sidebar_online_users template must be edited.
Look for this line of code in the template:
Code:
class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{$user.username},
Replace it with this:
Code:
class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{xen:helper richUserName, $user},

Results:
staff-members-online-now.png


Hopefully that works for you :)
 
Top Bottom