PDA

View Full Version : Is this possible


Tim1418
06-23-2006, 10:29 PM
Picture attached.

Would it be possible to not show the forums, my moderators mod?
(refer to pic)

peterska2
06-23-2006, 10:58 PM
There are two ways of doing this, the easy way and the hard way.

The easy way

Open your showgroups template

Find<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>DELETE IT

Then set the usergroup settings for your moderators usergroup to show on the show groups page.

The hard way

Open your showgroups template

Find<td class="tcat" colspan="4">$vbphrase[moderators]</td>Replace with<td class="tcat" colspan="3">$vbphrase[moderators]</td>
Find<td class="thead" width="50%">$vbphrase[forums]</td>Delete It

Open template showgroups_usergroupbit

Find<if condition="$showforums">
<td class="$bgclass"><div class="smallfont">$user[forumbits]</div></td>
</if>Delete it

Both ways will end up with a result like www.vbulletin.org/forum/showgroups.php The only difference is that the first way moves the moderators group to their place alphabetically on the page and the second leaves them at the top.

Paul M
06-23-2006, 11:08 PM
Or you could just go into your ACP ;

vBulletin Options > Help General Settings > Enable Forum Leaders

and set it to "Yes, but Disable Moderators"

:)

peterska2
06-23-2006, 11:11 PM
What, there's an option? :confused:

* peterska2 goes to look

So there is. And all this time I've been doing it the hard way :(

* peterska2 sighs

Paul M
06-23-2006, 11:13 PM
ROFL.

It was added in 3.5 I believe.

Tim1418
06-23-2006, 11:49 PM
Thanks a lot.