Quote:
Originally Posted by dancue
Is there any way to add the option to exclude a style from having ads?
Or better yet, can anyone explain to me how to add an If/else code to the footer for an ad. (if this styleid=no ad, else=ad.)
|
You can create your own plugin at
global_start to turn off vbam entirely.
PHP Code:
/*** Change to your style id ***/
if ($styleid==XXX){
/*** End Change to your style id ***/
// turn off vbadmanagement
$vbulletin->options['vbam']['ads'] = false;
}