MyBB Community Forums

Full Version: How to remove "Forum Contains No New Posts" "Forum is Locked"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi everyone,

Can you please tell me how to remove "Forum Contains New Posts" , "Forum Contains No New Posts", and "Forum is Locked" including their icons from the footer?

Thanks a lot
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>
I did it, it worked, however, there is this left below this code you told me to remove.

</div>
<br style="clear: both" />
{$footer}
</body>
</html>


There is no <div> above it, so do you think what is left is normal?
Thanks and reputation given!
Yeah, go ahead and remove that </div> if there isn't an opening div in the template.
I hate to dig but I need to now this as-welp.

I removed that code but it is still there?
Are you sure you removed it from the correct theme?
Yes, all that is left is

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--

// -->
</script>
</head>
<body>
{$header}
{$forums}
{$boardstats}


<br style="clear: both" />
{$footer}
</body>
</html>
Uhhhmm help?
go to acp > templates & themes > templates > your template > 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>


nvm you already tried that.. im all out of ideas
You do realize there's a post above that says this exact thing, right?
Pages: 1 2