MyBB Community Forums

Full Version: Show recentthreads in portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi! again I need some help to show recent threads on portal page. I'm using this plugin http://mods.mybb.com/view/recent-topics-on-index-page

any help is appreciated. Blush
open the plugin file in a editor like notepad++ and find below code around line 18
$plugins->add_hook("index_end", "recenttopicsindex_show");
add below code after above in a new line and save the file
$plugins->add_hook("portal_end", "recenttopicsindex_show");

And you can add {$recenttopics} in portal template at anywhere you like (eg. above {$announcements})
Thanks. .m. worked fine.