MyBB Community Forums

Full Version: Remove Views Column?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Is there a way that we can remove the Views Column located in each forum? Or, is there a setting in the control panel that will not display this information?

Thanks!
Go to:
Admin CP > Templates & Style > Templates > YOUR THEME Templates > Forum Display Templates > forumdisplay_thread
Find and remove:
<td align="center" class="{$bgcolor}{$thread_type_class}">{$thread['views']}</td>

Go to:
Admin CP > Templates & Style > Templates > YOUR THEME Templates > Forum Display Templates > forumdisplay_threadlist
Find:
<td class="thead" colspan="{$colspan}">
Replace with:
<td class="thead" colspan="7">

Find and remove (within the same template):
<td class="tcat" align="right" width="20%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=lastpost&amp;order=desc">{$lang->lastpost}</a> {$orderarrow['lastpost']}</strong></span></td>

Find (within the same template):
<td class="tfoot" align="right" colspan="{$colspan}">
Replace with:
<td class="tfoot" align="right" colspan="7">

Enjoy!Smile
Thank you very much!! I am going to try this out later this morning!!!