Quote:
Work with 3.0.X?
EDIT: I think it does, but not sure.
|
Yes it does.
That is an easy fix, there are 2 ways for BOTH 3.5.x and 3.0.x users:
use the current php showgroup change as what the hack mentioned on the first post
or
use admin cp and move the
above the
Code:
<if condition="$moderatorbits">
OR
You can also remove the entire moderators bit by removing the following code:
Code:
<if condition="$moderatorbits">
<!-- moderators -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="4">$vbphrase[moderators]</td>
</tr>
<tr>
<td class="thead"> </td>
<td class="thead" width="50%">$vbphrase[username]<if condition="$show['locationfield']"> / $vbphrase[location_perm]</if></td>
<td class="thead" width="50%">$vbphrase[forums]</td>
<td class="thead">$vbphrase[contact]</td>
</tr>
$moderatorbits
</table>
<br />
<!-- end moderators -->
</if>
in your admin cp skin settings on showgroups to make the forum leader list neat and organized (can be either via admin cp or php.. I perfer the admin cp in case if you want to re-use the moderator code in future use). You'll have to change the current moderators group to show group to yes when you removed the entire moderator code so that the current mods will be back on the showgroup list instead of the entire staff.
This is not the hack I was looking for though...