MyBB Community Forums

Full Version: Removing the 'New post' ect..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On a forum how where the 'forum sections/topics' are know how their are those icons that say if anything new or old has been posted in them? How do I remove those images? to use the ficons plugin thing?

Thanks.
I am not sure what exactly you want to remove but take a look into this tutorial:

http://community.mybb.com/thread-90951.html

It removes threads status icon.

And other one if you want to remove those icons on index:

Go to: Admin CP > Templates > Your theme's templates > Index Templates > index > search the following 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>
(2012-12-14, 08:43 AM)JovanJ. Wrote: [ -> ]I am not sure what exactly you want to remove but take a look into this tutorial:

http://community.mybb.com/thread-90951.html

It removes threads status icon.

And other one if you want to remove those icons on index:

Go to: Admin CP > Templates > Your theme's templates > Index Templates > index > search the following 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>

none of the tutorials work :/