Quote:
Originally Posted by BBR-APBT
Make a new plugin and add something like this. The hook location for the plugin should be forumdisplay_start.
Code:
if (THIS_SCRIPT == forumdisplay) {
$templater = vB_Template::create('your_template');
$template_hook['navbar_end'] .= $templater->render();
}
Make a new template add your stuff to that template and change your_template(in the above code) with the name of the template you just created.
|
But how do I have it appear above a specific list of sub-forums? Not above all.