MyBB Community Forums

Full Version: Less sub forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Howdy All readers
I have a question. I'm in the process of creating a clone script forum and ran into a minor issue.

http://wudbb.com/clone-popular-php-softw...cripts.htm

As you can see i have a ton of Sub forums. This makes the forum somewhat not user friendly since there is so many of them. I do want all the subs viewable from that page. Is there a better way to condense these subforums so the users wont have to scroll 6000 miles to get the the threads located at the bottom of the page? I guess i could locate the threads on top of the page and put the sub forums below the threads? i guess that would be possible? Thats the only idea i can come up with. I'm open to other suggestions as well.

Thanks for your time .

Ps im still kicking myself in the balls for buying ipb when i had 100 percent access to Mybb for free
GRR Live and learn!
Admin CP -> Themes and templates set -> Templetes -> ***Your theme*** -> Forum Display Templates -> Expand -> forumdisplay -> Options -> Full Edit

And replace everything with this:

<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}
{$threadslist}
{$subforums}
{$footer}
</body>
</html>

This will put the subforums to the buttom of the page for ALL forums. Wink
oic you changed {$threadslist}
{$subforums} around
Thanks