Do you have to create your own vBulletin page to use this? I created a section and am trying to use this tutorial to go to that section, yet I can't get the navbar to highlight. Here is the code as I have it now (I removed the submenu link code):
Code:
$tabselected = '';
$tablinks = '';
if (THIS_SCRIPT == 'podcast')
{
$vbulletin->options['selectednavtab']='podcast';
$tabselected = ' class="selected"';
$tablinks = '
<ul class="floatcontainer">
</ul> ';
}
$template_hook['navtab_end'] .= '<li'.$tabselected.'><a class="navtab" href="/forums/content/116-podcast">Podcast</a>'.$tablinks.'</li>' ;