VBIran
03-27-2011, 04:36 PM
Hi ,
If you use the 4.1.2 version of vbulletin you may face to this problem .
You see array instead of online users username.
To solve it :
You can revert FORUMHOME template .
Go to admincp --> Style and templates --> Search templates --> type FORUMHOME and search it . Click on forumhome name and choose revert from sidebar .
You can replace this code in forumhome :
<vb:if condition="$activeusers">
<ol class="commalist" id="wgo_onlineusers_list">
{vb:raw activeusers}
</ol>
</vb:if>
With this code :
<vb:if condition="$activeusers">
<ol class="commalist" id="wgo_onlineusers_list">
<vb:each from="activeusers" value="loggedin">
<li> {vb:stylevar dirmark}<a class="username" href="{vb:link member, {vb:raw loggedin}}">{vb:raw loggedin.musername}</a>{vb:raw loggedin.invisiblemark}{vb:raw loggedin.buddymark}</li>
</vb:each>
</ol>
</vb:if>
If the problem exists yet You must disable Usergroup legend bar (https://vborg.vbsupport.ru/showthread.php?t=228607) ( and/or something like that ) Or Upgrade it to 4.1.2 Version .
Good Luck. :)
If you use the 4.1.2 version of vbulletin you may face to this problem .
You see array instead of online users username.
To solve it :
You can revert FORUMHOME template .
Go to admincp --> Style and templates --> Search templates --> type FORUMHOME and search it . Click on forumhome name and choose revert from sidebar .
You can replace this code in forumhome :
<vb:if condition="$activeusers">
<ol class="commalist" id="wgo_onlineusers_list">
{vb:raw activeusers}
</ol>
</vb:if>
With this code :
<vb:if condition="$activeusers">
<ol class="commalist" id="wgo_onlineusers_list">
<vb:each from="activeusers" value="loggedin">
<li> {vb:stylevar dirmark}<a class="username" href="{vb:link member, {vb:raw loggedin}}">{vb:raw loggedin.musername}</a>{vb:raw loggedin.invisiblemark}{vb:raw loggedin.buddymark}</li>
</vb:each>
</ol>
</vb:if>
If the problem exists yet You must disable Usergroup legend bar (https://vborg.vbsupport.ru/showthread.php?t=228607) ( and/or something like that ) Or Upgrade it to 4.1.2 Version .
Good Luck. :)