MyBB Community Forums

Full Version: forumdisplay template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I was messing about in the default template for forumdisplay
I think I have deleted something important.

Can anyone tell me the fields I should have in this section.
I have.
<body>

{$header}
{$moderatedby}
{$usersbrowsing}
{$rules}
{$subforums}
{$thereadlist}
{$footer}


</body>

Many thanks
Tim
it is different from every theme/plugins you have, but here is mine
Quote:<html>
<head>
<title>{$mybb->settings['bbname']} - {$foruminfo['name']} </title>
{$headerinclude}
{$rssdiscovery}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$moderatedby}
{$usersbrowsing}
{$rules}
{$subforums}
{$threadslist}
{$footer}
</body>
</html>
i think this is the important things :
Quote:<html>
<head>
{$headerinclude}
{$rssdiscovery}
</head>
<body>
{$header}
{$moderatedby}
{$usersbrowsing}
{$rules}
{$subforums}
{$threadslist}
{$footer}
</body>
</html>
hope i helped
regards,
replace your forum display code with following:

<html>
<head>
<title>{$mybb->settings['bbname']} - {$foruminfo['name']} </title>
{$headerinclude}
{$rssdiscovery}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$moderatedby}
{$usersbrowsing}
{$rules}
{$subforums}
{$threadslist}
{$footer}
</body>
</html>
many thanks. you are a star.
Smile