I did make one final change before I put on the production site, changed the PHPSTART code to:
PHP Code:
$display_ad = FALSE;
$omit_forums = array(6,7);
if (THIS_SCRIPT == 'showthread' || THIS_SCRIPT == 'forumdisplay')
{
if (!in_array($foruminfo['forumid'],$omit_forums))
{$display_ad = true;}
}
This way when I want to add forums not to be included, I just add them to the $omit_forums array, I can also use it if I want to exclude things from those forums in future mods.
Thanks again for responses,
basil