MyBB Community Forums

Full Version: Removing Thread Icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
At The Bottom of the Index Page you will see 3 or More Forum Icons, I don't like seeing them on the bottom of the index it seems to distracting to members, so I wanted to edit it and remove it from the index, But Checking the Index page I don't see where it is.

Can Anyone post where the correct code snippet is, so I don't screw up the forums.

thanks.
In the index template at the bottom , below {$boardstatus} find the code:
<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>


And remove the whole code starting from <dl> and ending at </dl>