View Full Version : Mod to get online status of a user and place it anywhere on a site?
bboylen
08-21-2006, 10:08 PM
Is there a way to get the current online status of a user and place it anywhere on my site?
I already have the login system tied in to prevent access to some parts of the site with the vbulletin cookies and user database, but I need to know if it will be possible to get a user's online or offline status.
Mastar
08-22-2006, 02:59 AM
Try:
<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>
Located in:
postbit_onlinestatus template.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.