MyBB Community Forums

Full Version: Recent thread Plugin position
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i just installed this plugin which allows me to see Recent threads. but it is below the sections i would like to move it to the top i tried searching the code so far no luck.

<?php
 
<--  snip  -->

    require_once MYBB_ROOT . "/inc/adminfunctions_templates.php";

    find_replace_templatesets('index', "#" . preg_quote('{$forums}') . "#i", '{$forums}<div id="recentthreads">{$recentthreadtable}</div>');
    find_replace_templatesets('index', "#" . preg_quote('{$headerinclude}') . "#i", '{$headerinclude}{$recentthread_headerinclude}');
}

<--  snip  -->

http://prntscr.com/9qqhxw

i want to move top of announcements
index template of the theme consists of code like below
{$forums}<div id="recentthreads">{$recentthreadtable}</div>

you can change it to
<div id="recentthreads">{$recentthreadtable}</div>{$forums}
oh nice, what can we do to make it go below the my tabs?

http://prntscr.com/9qri3h
you can move <div id="recentthreads">{$recentthreadtable}</div> to above of tabs related code
to be honest i did not get what i have to do, where do i edit the code?
^ index template of the theme