[how to] status icon

kazimhussain

New Member
how change " is online now , is offline now " to a icon :s ... like in vbteam
i tried to do it through language and phrase .. but :s .. :| useless.. didn't work :| ..! it still shows that text
 
You wont it to say that your online and offline or do you simplly wont a small icon? If you wont a small icon just replace the icons that are already used with a new icon with the same name and extenstion type. If you wont it to say online offline I can figure it out and post it here if you wont it that way.
 
alexD said:
You wont it to say that your online and offline or do you simplly wont a small icon? If you wont a small icon just replace the icons that are already used with a new icon with the same name and extenstion type. If you wont it to say online offline I can figure it out and post it here if you wont it that way.

THERE IS NO DEFAULT ICON TO SHOW OFFLINE AND ONLINE A USER

i want the icon :)
 
find the template postbit_onlinestatus
replace everything with
Code:
<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>

and then in your statusicon/ folder on you server.
upload 3 images, 1 image you want to show when the user is ONLINE name it: "user_online.gif"
another image named "user_offline.gif" for when they are offline
and an image to show when they are invisible. "user_invisible.gif"

hope this helps you mate
 
Back
Top