MyBB Community Forums

Full Version: Switch locations of recent threads above all forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So i installed a plugin which let all users show all recent threads (plugin is called "recent threads on index"
Now what i saw in the plugin's description is that i can alter some index or thingy to make it atop.
Doesnt work.

I currently use the standard theme, but i am adding a new theme soon

How can i get the "recent threads" above the whole forums list?
Here's a photo[Image: b93233e0be.png]
go to admin cp -> templates & style -> templates -> your theme templates -> index templates -> index -> edit

now find {$recentthreadtable} and place it above ($forums)
(2016-03-23, 08:43 PM)Blackbeard Wrote: [ -> ]go to admin cp -> templates & style -> templates -> your theme templates -> index templates -> index -> edit

now find {$recentthreadtable} and place it above ($forums)

Thanks, this is now fixed!

whoever interests this, this is how my code looks now:

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}{$recentthread_headerinclude}
<script type="text/javascript">
<!--
    lang.no_new_posts = "{$lang->no_new_posts}";
    lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body id="forums">
{$header}
<div id="recentthreads">{$recentthreadtable}</div>
{$forums}
{$boardstats}
<br class="clear" />
{$footer}
 

</body>
</html>