Quote:
Originally Posted by Hi-Jack
Hi guys, i don't want this tab to show on my portal, only the forums. When placing it in the FORUMHOME template section it only shows up there and not on the forumdisplay... Se where should i add the code for the tabs?
|
Easy, real this :
http://www.vbulletin.com/docs/html/t...e_conditionals
PHP Code:
<if condition="THIS_SCRIPT != 'your portal' ''>
<div id="vibetab">
<ul>
<li><a href="#" id="active_menutopnav"><span>Portal</span></a></li>
<li><a href="#"><span>Forum</span></a></li>
<li><a href="#"><span>Article</span></a></li>
<li><a href="#"><span>Mods</span></a></li>
<li><a href="#"><span>Styles</span></a></li>
<li><a href="#"><span>Graphic</span></a></li>
<li><a href="#"><span>Page 1</span></a></li>
<li><a href="#"><span>Page 2</span></a></li>
<li><a href="#"><span>Page 3</span></a></li>
</ul>
</div>
</if>