Quote:
Originally Posted by pokash
But how do I have it appear above a specific list of sub-forums? Not above all.
|
Go to your navbar template and add the following at the very end or where ever you want it to show.
Code:
{vb:raw template_hook.below_navbar}
Plugin Code
Code:
if (THIS_SCRIPT == forumdisplay) {
$BBRForumIDs = array(5,7,13);
if(in_array($vbulletin->GPC['forumid'], $BBRForumIDs))
{
$templater = vB_Template::create('your_template');
$template_hook['below_navbar'] .= $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.
Don't forget to edit your forum id's you want it to show in.
Let me know how it works.