PDA

View Full Version : Active users not showing


chaldo
04-05-2011, 05:52 PM
I just upgraded my forum to 4.1.2 the default skin is working for active users but on a different skin it shows: http://snpr.cm/A0sS23.png Just says array. Any idea on how to change that?

-Chaldo;)

Chase
04-05-2011, 06:00 PM
I think you're using an out-of-date style (i.e. not compatible with 4.1.2)

I had the same problem, here is how I got around this...

In FORUMHOME template search for:

{vb:raw activeusers}

Replace that with this...

<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>

That should do the trick.

chaldo
04-05-2011, 06:36 PM
I think you're using an out-of-date style (i.e. not compatible with 4.1.2)

I had the same problem, here is how I got around this...

In FORUMHOME template search for:



Replace that with this...



That should do the trick.

This worked, thanks man! Mods please close this.

-Chaldo;)