Lynne,
Thanks for this awesome guide. So I'm trying to hide the tab from people not logged in. Also I only want some user groups to see it. This is what I have so far.
PHP Code:
global $template_hook;
$tabselected = '';
$tablinks = '';
if (THIS_SCRIPT == 'Buy Now')
if (is_member_of($vbulletin->userinfo, 5, 6, 7))
{
$vbulletin->options['selectednavtab']='Buying';
$tabselected = ' class="selected"';
$tablinks = ' <ul class="floatcontainer">
<li><a href="link1.php">Link 1</a></li>
<li class="popupmenu">
<a href="javascript://" class="popupctrl">Drop Down</a>
<ul class="popupbody popuphover">
<li><a href="sublink1.php">Test Link 1</a></li>
<li><a href="sublink2.php">Test Link 2</a></li>
<li><a href="sublink3.php">Test Link 3</a></li>
</ul>
</li>
<li><a href="link2.php">Link 2</a></li>
<li><a href="link3.php">Link 3</a></li>
</ul> ';
}
$template_hook['navtab_end'] .= '<li'.$tabselected.'><a class="navtab" href="http://mysite.com/forum/showthread.php?1-testpost">Buy Now</a>'.$tablinks.'</li>' ;
I tried just testing out the if statement first to see if I could only let some user groups see the tab. But that didn't work. Maybe I placed it in the wrong place?
--------------- Added [DATE]1258564039[/DATE] at [TIME]1258564039[/TIME] ---------------
Woot I just fixed it. I put the if statement above the global and it works. Doesn't matter about the member part now. Because if they are not part of the right group it won't even show up. :-)
So here is my answer:
PHP Code:
if (is_member_of($vbulletin->userinfo, 5, 6, 7))
global $template_hook;
$tabselected = '';
$tablinks = '';
if (THIS_SCRIPT == 'Buy Now')
{
$vbulletin->options['selectednavtab']='Buying';
$tabselected = ' class="selected"';
$tablinks = ' <ul class="floatcontainer">
<li><a href="link1.php">Link 1</a></li>
<li class="popupmenu">
<a href="javascript://" class="popupctrl">Drop Down</a>
<ul class="popupbody popuphover">
<li><a href="sublink1.php">Test Link 1</a></li>
<li><a href="sublink2.php">Test Link 2</a></li>
<li><a href="sublink3.php">Test Link 3</a></li>
</ul>
</li>
<li><a href="link2.php">Link 2</a></li>
<li><a href="link3.php">Link 3</a></li>
</ul> ';
}
$template_hook['navtab_end'] .= '<li'.$tabselected.'><a class="navtab" href="http://mysite.com/forum/showthread.php?1-testpost">Buy Now</a>'.$tablinks.'</li>' ;