Quote:
Originally Posted by Tony G
Did it work fine on 3.0.8, or did you have to change code around? And thanks for the comments. 
|
I installed on 3.0.3, so I'm assuming that question wasn't directed at myself.
I also discovered a slight problem in the way you set up the code, since the forum-leaders list uses the same template (SHOWGROUPS), so you get "Status: Online" and so on in the left-most column.
I shifted the code around a bit, did a small edit to showgroups_usergroupbit and it's not as hideous as before.
showgroups_usergroupbit
Replace
Code:
<td class="$bgclass">$user[onlinestatus]</td>
With
Code:
<td align="center" class="$bgclass">$user[onlinestatus]</td>
postbit_onlinestatus
Replace everything with
Code:
<if condition="$onlinestatus==0"><font color="#999999"><b>Offline</b></font></if>
<if condition="$onlinestatus==1"><font color="#009000"><b>Online</b></font></if>
<if condition="$onlinestatus==2"><font color="#999999"><b>Invisible</b></font></if>
postbit_legacy
Replace
Code:
<div>$post[onlinestatus]</div>
With
Code:
<div>Status: $post[onlinestatus]</div>
Basically, I removed the "Status:" from the actual onlinestatus template and made that specific to the postbit, then aligned the status on the forum-leaders page to account for the cell-stretching caused by "Invisible" being so much longer than "Online" and "Offline".
Note: You have to make sure you remove all the <div> tags from the onlinestatus template, otherwise it'll break the actual status onto another line in the postbit.