MyBB Community Forums

Full Version: Move Category Forum above Sub forums.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As the title says, how would one do the following:

When you make a forum (See screenshot Forum1) As you can see, at the bottom of the page "1 'Gibraltar' Platoon" is at the bottom, I'd like this to appear at the top and the sub-forums appear below the 1 Platoon area,

If possible how would I do this as I cannot seem to find it Sad

Any help is greatly appreciated!

Regards,

Goose.
ACP -> Style & Templates -> Templates -> <your theme> Templates -> Forum Display Templates -> forumdisplay

<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}";
	lang.inline_edit_description = "{$lang->inline_edit_description}";
	lang.post_fetch_error = "{$lang->post_fetch_error}";
// -->
</script>
<!-- jeditable (jquery) -->
<script src="{$mybb->asset_url}/jscripts/jeditable/jeditable.min.js"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/inline_edit.js?ver=1800"></script>
</head>
<body id="forums">
{$header}
{$rules}
{$subforums}
{$threadslist}
    {$usersbrowsing}
{$footer}
</body>
</html>

Switch the positions of {$subforums} and {$threadslist}.

Wink
Thank you! Big Grin Sorry for the late reply too