MyBB Community Forums

Full Version: Remove status column
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
How to remove the forum status column?
[Image: 35co55u.png]

Thanks.
ACP > Templates & Style > Templates > **expand template set** > forumbit_depth2_cat and forumbit_depth2_forum > find and remove:

<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>
Thank you. It works, but I have a problem. I'm using ficons v2 forum plugin (from mybbcentral) and I want to insert ficons icons into the forum status column and delete the ficons column.
So, I have do this:
Example in forumbit_depth2_forum:


Original:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td><td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['description']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$forum['modlist']}{$subforums}</div>
</td>
<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>
<td class="{$bgcolor}" valign="top" align="left" style="white-space: nowrap">{$lastpost}</td>
</tr>

Modified:
<tr>
<td class="{$bgcolor}" align="center" valign="top" width="1"><img src="uploads/ficons/{$forum['ficon']}" alt="{$forum['description']}" /></td>
<td class="{$bgcolor}" valign="top">
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$forum['modlist']}{$subforums}</div>
</td>
<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>
<td class="{$bgcolor}" valign="top" align="left" style="white-space: nowrap">{$lastpost}</td>
</tr>

I view the ficons icons into the status column, but I have this problem:
http://i41.tinypic.com/263cw9f.png

How to solve it? Thanks.
Oh, you didn't say you wanted Ficons too. I'd say add the other one back in (revert the templates to default), install Ficons, and then try and remove the on/off column again. I think there's something you have to add, which can be found in the Ficons thread on mybbcentral.
Thank you. Now It works Smile