MyBB Community Forums

Full Version: How to remove the statistics and 'off/on pictures'
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello.
I have two questions.

1) How do you remove the statistics for your forum? I want to make it go away. That's it:

[Image: Ol1tA.png]


2) How can I remove these:

[Image: UVBeG.png]


Thank you very much.
Link?
ACP>Templates & Style>Templates>*your theme*>Index Templates>index

Find and delete:

<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

{$boardstats}
Thank you very much.
I appreciate it.