forum leaders prob

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • STG
    New Member
    • Sep 2006
    • 25
    • 3.6.x

    forum leaders prob

    I don't want it to display which forum the moderators mod, I just want it so a Forum Moderators section comes up, and so it's not at the top.

    How do I do this?
  • Jake Bunce
    Senior Member
    • Dec 2000
    • 46598
    • 3.6.x

    #2
    See this thread to move the mod listings on the showgroups page.

    To remove the forum column, remove the red code from that same template:

    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>
    	[color=red]<td class="thead" width="50%">$vbphrase[forums]</td>[/color]
    	<td class="thead">$vbphrase[contact]</td>
    </tr>
    $moderatorbits
    </table>
    <br />
    <!-- end moderators -->
    </if>
    ...and remove the red code from the showgroups_usergroupbit template:

    Code:
    <tr>
    	<td class="$bgclass">$user[onlinestatus]</td>
    	<td class="$bgclass">
    		<a href="member.php?$session[sessionurl]u=$user[userid]">$user[musername]</a>
    		<if condition="$show['location']"><div class="smallfont" title="$vbphrase[location_perm]">$user[location]</div></if>
    	</td>
    	[color=red]<if condition="$showforums">
    		<td class="$bgclass"><div class="smallfont">$user[forumbits]</div></td>
    	</if>[/color]
    	<td class="$bgclass" nowrap="nowrap">
    		<if condition="$show['pmlink']"><a href="private.php?$session[sessionurl]do=newpm&amp;u=$user[userid]" rel="nofollow"><img src="$stylevar[imgdir_button]/sendpm.gif" alt="<phrase 1="$user[username]">$vbphrase[send_private_message_to_x]</phrase>" border="0" /></a></if>
    		<if condition="$show['emaillink']"><a href="sendmessage.php?$session[sessionurl]do=mailmember&amp;u=$user[userid]" rel="nofollow"><img src="$stylevar[imgdir_button]/email.gif" alt="<phrase 1="$user[username]">$vbphrase[send_message_via_email_to_x]</phrase>" border="0" /></a></if>
    	</td>
    </tr>

    Comment

    widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
    Working...