PDA

View Full Version : Exclude Notices from cmps_index


burntire
02-25-2010, 11:33 PM
Does anyone know how can I exclude the vbulletin notices from my cmps_index.php homepage?

5693

KW802
02-26-2010, 01:13 AM
Does anyone know how can I exclude the vbulletin notices from my cmps_index.php homepage?

5693
Burntire,

A quick way to exclude the notices from your vBa CMPS powered pages is to modify your navbar template.

Look for...<vb:if condition="$show['notices']">
... and change it to:<vb:if condition="$show['notices'] AND THIS_SCRIPT != 'adv_index'">

Our Sponsors
 

burntire
02-26-2010, 01:38 AM
Thanks.