PDA

View Full Version : online now


heatherl55
07-20-2007, 02:41 AM
Is there an online now thing? Ive seen some around. Where do I go on my admin CP to add it?

Roms
07-20-2007, 02:50 AM
Is there an online now thing?


Can you be a bit more descriptive? Like changing the settings to Who's online?

heatherl55
07-20-2007, 02:54 AM
Like under there avatar it says Online Now or Offline Now.

Dismounted
07-20-2007, 11:00 AM
That's already there, you see that circular image next to my username? That's the online status indicator.

heatherl55
07-20-2007, 01:15 PM
That's already there, you see that circular image next to my username? That's the online status indicator.

I dont see one. Do I have to enable it?

EnIgMa1234
07-20-2007, 01:16 PM
https://vborg.vbsupport.ru/external/2010/01/8.gif <--- That is the image

heatherl55
07-20-2007, 01:18 PM
hmm I dont see it

G0F0RBR0KE
07-20-2007, 01:37 PM
Can you take a screenshot?

heatherl55
07-20-2007, 01:42 PM
Can you take a screenshot?


here is a screenshot. 67244

G0F0RBR0KE
07-20-2007, 01:56 PM
Ahh, that a custom skin.

The author of that skin probably didn't add the online code.

heatherl55
07-20-2007, 02:01 PM
Ahh, that a custom skin.

The author of that skin probably didn't add the online code.

oh that sucks! Ill just look for an online now code.

G0F0RBR0KE
07-20-2007, 02:08 PM
Go in your posbit template and find postbit_onlinestatus and simply add this

<if condition="$onlinestatus==0"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_offline.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_offline]</phrase>" border="0" /></if>
<if condition="$onlinestatus==1"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_online.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_online_now]</phrase>" border="0" /></if>
<if condition="$onlinestatus==2"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_invisible.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_invisible]</phrase>" border="0" /></if>

Delete whatever you have there.

heatherl55
07-20-2007, 03:00 PM
Go in your posbit template and find postbit_onlinestatus and simply add this

<if condition="$onlinestatus==0"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_offline.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_offline]</phrase>" border="0" /></if>
<if condition="$onlinestatus==1"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_online.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_online_now]</phrase>" border="0" /></if>
<if condition="$onlinestatus==2"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/user_invisible.gif" alt="<phrase 1="$user[username]">$vbphrase[x_is_invisible]</phrase>" border="0" /></if>



Delete whatever you have there.



ok thank you so much :)

G0F0RBR0KE
07-20-2007, 03:14 PM
No problem, tell me if it works.