PDA

View Full Version : How to move online status to bottom of user info stack...


RedHotChili
02-29-2012, 05:51 PM
I'm not sure how to do this, but I want to move the "bulb" that shows online status to the right of a user's name down to the bottom of the info stack.

Do I simply move the following to the bottom?

<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
{vb:raw post.onlinestatus}
<vb:else />

kh99
02-29-2012, 08:33 PM
I think you would change the above code to this:

<vb:if condition="$post['userid']">
{vb:raw memberaction_dropdown}
<vb:else />



Then put this where you want the bulb:

<vb:if condition="$post['userid']">
{vb:raw post.onlinestatus}
</vb:if>

RedHotChili
02-29-2012, 09:21 PM
Thanks for showing me how to do this.

I decided to go with this instead: https://vborg.vbsupport.ru/showthread.php?t=231163&highlight=online

But I was able to move it down to where I wanted it.

Thanks for your help.