Log in

View Full Version : Moderator Specifics in Forum Leaders


Jubei
09-18-2007, 10:03 AM
I'm sure I had this before, but now it doesn't seem to work. Anyway, what I want is the Forum Leaders to be displayed as so:

Admins:
Member#1

Moderators:
Member#2
Member#3
Member#4

Then following that, it specifies where they moderate:

Moderators:
Member#2 - e.g. Politics, Sport, Health
Member#3 - e.g. Politics, News etc.
Edit/Delete Message

Thanks

Dismounted
09-18-2007, 11:04 AM
If you enable displaying moderators on the Forum Leaders (via vBulletin Options, not usergroup options), it will do exactly that.

Jubei
09-18-2007, 02:37 PM
I thought it was a default setting, but over at vB.com they said it was a vB.org matter. Anyway, I went to vBulletin Options > General Settings > Enable Forum Leaders, and it's already set on 'Yes'. So, did you mean somewhere else?

Dismounted
09-19-2007, 05:18 AM
It should display which forums they moderate, like here (http://www.vbulletin.com/forum/showgroups.php).

How are you adding the moderators?

Jubei
09-19-2007, 08:01 AM
I got to Forum Manager > 'x' Forum > Add Moderator. They're definitely set to the Mod usergroup too, it's just not displaying their forums on the Show Leaders.

Jubei
09-20-2007, 08:04 AM
*bump*

Jubei
09-21-2007, 12:54 PM
*le bump*

Staxed
09-21-2007, 12:57 PM
do you have a custom style?...have you tried switching to default style (if you do) and deactivating the plugin system to see if it works correctly?

Jubei
09-21-2007, 01:18 PM
I've edited my default style, but I can't see how I would have removed this.

Here's my 'SHOWGROUPS' template. Anything suspect here?

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>$vboptions[bbtitle] - $vbphrase[show_groups]</title>
</head>
<body>
$header
$navbar

$usergroups

<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100%">&nbsp;</td>
<td>$forumjump</td>
</tr>
</table>

$footer
</body>
</html>

Staxed
09-21-2007, 01:21 PM
here is my SHOWGROUPS template...as you can tell...they are quite different...(mine is 3.6.8)


$stylevar[htmldoctype]
<html 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">&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

<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td width="100%">&nbsp;</td>
<td>$forumjump</td>
</tr>
</table>

$footer
</body>
</html>

Jubei
09-21-2007, 03:15 PM
I must have deleted some parts then. I've copied your coding into my SHOWGROUPS now (except I've moved the Moderator forum lists underneath the Admin/Mod List).

Thank you. :)

Staxed
09-21-2007, 03:28 PM
glad I could help :D