Mahar
12-06-2008, 06:51 PM
I'm looking to re-order my Show Forum Leaders Page. I've included a screenshot.
Basically, that way you see it...I want it to go:
Administrators
Test Administrators
Game Server Admins
Super Moderators
Moderators
I had it once so it was Admin Smod Mod...but now that we have multiple groups...is there any simple way to do this? I know I'll be editing some templates...I'm not worried about that..I just need to know what coding to use.
Here is the show groups coding:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[show_groups]</title>
</head>
<body>
$header
$navbar
<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>
$usergroups
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100%"> </td>
<td>$forumjump</td>
</tr>
</table>
$footer
</body>
</html>
I believe that is the correct one.
Basically, that way you see it...I want it to go:
Administrators
Test Administrators
Game Server Admins
Super Moderators
Moderators
I had it once so it was Admin Smod Mod...but now that we have multiple groups...is there any simple way to do this? I know I'll be editing some templates...I'm not worried about that..I just need to know what coding to use.
Here is the show groups coding:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[show_groups]</title>
</head>
<body>
$header
$navbar
<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>
$usergroups
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100%"> </td>
<td>$forumjump</td>
</tr>
</table>
$footer
</body>
</html>
I believe that is the correct one.