I am using vb 4.1.2 cms and found the
{vb:raw template_hook.navtab_end}
added the code above it, with my page link and the title that i wanted the tab.
<vb:if condition="THIS_SCRIPT == 'mynewpage'">
<li class="selected"><a class="navtab" href="mynewpage.php">mylink</a></li>
<vb:else />
<li><a class="navtab" href="mynewpage.php">mylink</a></li>
</vb:if>
but when clicked it still showed the home tab selected. but when i searched for
<vb:if condition="!$vboptions['selectednavtab'] AND THIS_SCRIPT != 'search'">
it didnt come up, the only thing i could fine in the script was
<vb:if condition="!$vboptions['selectednavtab']>
I am not sure what to do with this.
|