Hi guys I got a mod to display a
members online offline status. But it puts the status in beside the
profile image. How the status is showen is using a lightbulb that is on
when a user is on line and off when they are off line. Can I adjust
this to show the light bulb image along with some text saying online or
offline. here is the mod below.
global $tmpl;
$sStatusImg = get_user_online_status($iPID) ? 'online.gif' : 'offline.gif';
$sStatusCode = '<img src="templates/tmpl_' . $tmpl .
'/images/icons/' . $sStatusImg . '" style="position: absolute; top:
35px; right: 5px;" />';
$ret .= $sStatusCode;
Regards
Aiden