XF 1.5 Who is online username styling

Template: sidebar_online_users

Look for:

Code:
class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{$user.username}</a><xen:if is="{$i} < {$onlineUsers.limit}">,</xen:if>

Make this change:

Rich (BB code):
class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{xen:helper richUserName, $user}</a><xen:if is="{$i} < {$onlineUsers.limit}">,</xen:if>
 
Assuming you followed the instructions on the Help page it should work.

Are you using the WF add-on to add the sidebar elements?
 
Top Bottom