MyBB Community Forums

Full Version: Changing what shows on the index page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The index page table shows Forum, Threads, Posts and Last Post. How can I take out those two center columns, and leave it showing just the forum names and last post for each forum?
ACP >> Templates & Style >> Templates >> yourtheme >> Forum Bit Templates

In forumbit_depth1_cat find and remove:
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="85" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>

In forumbit_depth2_cat and forumbit_depth2_forum find and remove:
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
Many thanks!
Oops. It looks great on the index page, but I just realized that when I go to a forum category from there, it's not quite right. Like I said, the main index looks great, but I'll attach a pic of a forum category:

Oops, forgot about that...

In forumdisplay_subforums find and remove:
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>