MyBB Community Forums

Full Version: Remove moderated forum names from Showteam.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi! I would like to remove moderated forum names from showteam.php
I have researched previous threads but didn't found anything related to this matter. Please help. Thanks.


[Image: attachment.php?aid=35348]
AdminCP > Templates & Styles > Templates > *your template* > Show Forum Team Templates > showteam_moderators_forum

Delete the contents.

EDIT: wait.. that would just get rid of the link, and not remove the "Forum(s)" text in the TCAT... one sec.

EDIT 2: Do that which is stated above, then do this as well...

Open "showteam_moderators" and remove the following:

<td class="tcat"><span class="smalltext"><strong>{$lang->mod_forums}</strong></span></td>

Let me know if that resolved your inquiry.
Thank you very much for reply sparkks,

It worked for me but with tiny problem, "Last Visit" floated to the middle. Can you help me with that. Thanks.

[Image: attachment.php?aid=35349]
i am afraid you just emptied the cell containing the forum list... you didnt remove it from the table... try as following...

Step 1: in showteam_moderators template

Change the colspan...
<td class="thead" colspan="4"><strong>{$lang->moderators}</strong></td>


Remove this...
<td class="tcat"><span class="smalltext"><strong>{$lang->mod_forums}</strong></span></td>


Step 2: in showteam_moderators_mod template

Change the width...
<td width="75%" class="{$bgcolor}"><img src="{$theme['imgdir']}/buddy_{$status}.png" title="{$lang->$status}" alt="{$lang->$status}" style="vertical-align: middle;" /><a href="{$user['profilelink']}"><strong>{$user['username']}</strong></a></td>

Remove this....
<td width="30%" class="{$bgcolor}"><span class="smalltext">{$forumslist}</span></td>
Yep.. sorry forgot to mention to add the colspan.

Thank you mmadhankumar. I don't have a default theme on standby so had to do everything from memory. =/

Again.. thanks for correcting me!
Thank you both guys. It worked. Smile