Quote:
Originally Posted by JPetrillo
Oh, I think I just figured it out on my own, but can someone please tell me if I did it right?
I added: <if condition="$show['member']">
Just before: <!-- icon key -->
and then: </if>
Just after: <!-- / forum rules & forum jump -->
Is that okay?
Also, in that same screenshot where it shows the Moderators... how do I make it so it does not show the Moderators. I want to display options to only show the sort options, I do not want the names of Moderators to show up.
|
To remove moderators you'll have to remove from FORUMDISPLAY template:
HTML Code:
<if condition="$show['moderators']">
<td class="alt1"><div class="smallfont">$moderatorslist </div></td>
</if>
and
HTML Code:
<if condition="$show['moderators']">
<td class="tcat">$vbphrase[moderators]</td>
</if>
and
HTML Code:
<if condition="$show['moderators']">
<td class="thead">$vbphrase[moderators] : $totalmods</td>
</if>