XF 1.2 Markup whos online

C.Stanley

Active member
I followed the guide to markup usernames on my forum but cant figure out how to mark up the names in the members online now.
 

Attachments

  • markup.webp
    markup.webp
    3.7 KB · Views: 22
I followed the guide to markup usernames on my forum but cant figure out how to mark up the names in the members online now.
Check your sidebar_online_users and make sure the below segment is there.
Are you using BD Widgets? If so, I believe there is an option there to use rich text usernames. You must also have defined (in the groups in the User Name CSS) a color.
Code:
                           <li>
                                <xen:avatar user="$user" size="s" img="true" />
                                <xen:username user="$user" rich="true" />
                                <div class="userTitle">{xen:helper userTitle, $user}</div>
                            </li>
 
Top Bottom