MyBB Community Forums

Full Version: Rules spot?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I got a new theme up on my forums, but when I try to add rules for each forums, its not showing? Do I need to edit template for it to show?

In the 'forumdisplay' template make sure the {$rules} text is in there.
This is the template of the default theme:
<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>
Nice, thanks a lot man...