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]](https://camo.mybb.com/ed92785d18886d2b88aacf3ec5b333cee94d562d/687474703a2f2f636f6d6d756e6974792e6d7962622e636f6d2f6174746163686d656e742e7068703f6169643d3335333438)
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]](https://camo.mybb.com/5beb3347090da8cf8f71deb5c03927c4fb4fc923/687474703a2f2f636f6d6d756e6974792e6d7962622e636f6d2f6174746163686d656e742e7068703f6169643d3335333439)
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.
