View Single Post
Old 11-21-2006, 06:14 PM   #2
Kall
Administrator
 
Kall's Avatar
 
 Join Date: Oct 2005
  Posts: 376
 Rep Power: 10Kall has disabled reputation

There sure is... assuming the relevant pages have THIS_SCRIPT defined.

Just add
PHP Code:
AND THIS_SCRIPT != 'nameofscript' 
to the if condition that controls the infobar, in the navbar template.

PHP Code:
if condition="$bbuserinfo[userid] != '0' AND $vboptions[enhancedinfobar] 
If they don't have THIS_SCRIPT defined, you would need to go the longer way:
PHP Code:
AND in_array(THIS_SCRIPT, array(showthread,index,forumdisplay)) 
etc.
Kall is offline   Reply With Quote