Hello all! I am puzzled. I tried to adopt this with the following code to link to our store on our site.
PHP Code:
$tabselected = '';
$tablinks = '';
if (THIS_SCRIPT == 'STORE')
{
$vbulletin->options['selectednavtab']='STORE_tab';
$tabselected = ' class="selected"';
$tablinks = '
<ul class="floatcontainer">
<li><a href="https://www.scsimulations.com/store/">Store</a></li>
</ul>
';
}
$template_hook['navtab_end'] .= '<li'.$tabselected.'><a class="navtab" href="https://www.scsimulations.com/store/">Store</a>'.$tablinks.'</li>' ;
The above doesn't seem to do a thing.
Any help? (I'm not the best in PHP coding...so I appreciate a layman's explaination if possible.)