John,
Thanks for your code. I am trying to hide 4 tabs, two of which are built in to vB, two are plugins.
The two tabs built in are the Forum and What's New. I looked in the navbar template and can't find the code that specifically points to the "Forum" tab itself. Any guidance would be appreciated.
The two plugins use the following code:
Code:
$tabselected = '';
$tablinks = '';
if (THIS_SCRIPT == 'calendar')
{
$vbulletin->options['selectednavtab']='events';
$tabselected = ' class="selected"';
}
$template_hook['navtab_end'] .= '<li'.$tabselected.'><a class="navtab" href="http://www.projecttheophilus.com/comcenter/calendar.php?calendarid=1">EVENTS</a>'.$tablinks.'</li>' ;
I'm not sure where to add the code you provided into these plugins. Any help there would be appreciated. Thank you so much for all the help!