Thanks for the help, g-force2k2. The only reason I want it to not show zero time online users is because I have a few members that haven't been on for a while and probably won't be again and it just looks a little cleaner this way. One last thing. I need to make it so the Total Time Online link doesn't show up in the posts where there is no time after it (for like Admins and zero time-users). Can you help me with that final thing, sir?
Also, does this code look right to you? This is from the member.php. It doesn't need that last else statement does it?
Code:
// +++++++ Start Time Online Hack [ g-force2k2 ] +++++++
$userinfo[onlinetime] = dotimeonline($userinfo[timeonline]);
if($userinfo[usergroupid] == 6 OR $userinfo[timeonline] == 0) {
$getinfo_timeonline = "";
} else {
eval("\$getinfo_timeonline = \"".gettemplate('getinfo_timeonline')."\";");
}
}
} else {
$getinfo_template = "";
}
// +++++++ Start Time Online Hack [ g-force2k2 ] +++++++