please get me this

This mod allows you to put the Moderators last, the Administrators first and the Super Moderators second.

Installation:
Open the SHOWGROUPS template.
Find:

HTML:
<!-- 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">&nbsp;</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 -->
Remove this.

Find:
PHP:
$usergroups

Add below:
HTML:
<!-- 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">&nbsp;</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 -->

Edit the MembersGroup 'Administrators' and replace the 'Title' with this:
HTML:
<!-- Order="1" -->Administrators

Save.

Edit the MembersGroup 'Super Moderators' and replace the 'Title' with this:
HTML:
<!-- Order="2" -->Super Moderators

Save.
 
++ Show Administrators on top of Showgroups.php
++ Hack by: flup
++ Template Edits: 1

##########

In template: SHOWGROUPS find:
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">&nbsp;</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>

$usergroups

################################

Replace with:

################################

Code:
$usergroups

<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">&nbsp;</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>
 
Back
Top