MyBB Community Forums

Full Version: Removing "forum contains no new posts"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
removed
You're missing the images.

What's your forum URL?
removed
removed
Be sure to make a backup

Go to: ACP > Templates > Forumbit Templates > forumbit_depth2_forum > find the following 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> 
In "forumbit_depth1_cat" , find the following;
<td class="tcat" colspan="2"> 
and Change it into;
<td class="tcat" colspan="1"> 
In "forumdisplay_subforums" , find the following and remove;
<td class="tcat" width="2%">&nbsp;</td> 

Should then look like: [Image: attachment.php?aid=553] If that's what you're looking for

Also remove

Templates & Style -> Templates -> Your Theme -> Index Page Templates -> index

Find and remove:

<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>
removed