Quote:
Originally Posted by korny
Red, I like this mod. I already installed it and everything is running good with both 3.5 and 3.6. I use header and footer ads alot, I have a few forum sections I would not want the ads to showup in. I see that there is no way in the admin cp to turn the header and footer of for certain forum ids? Why is that? Is there a easy fix to where I can have them shut off?
I already clicked installed. 
|
There are few settings per location simply because it would make both the settings and the code itself insanely complicated. If you have something specific you want to do, it's best to do it just by editing the template.
Try surrounding the entire footer/header_advertisement templates with:
Code:
<if condition="!in_array($GLOBALS[forumid], 5,6,7)">
REST OF TEMPLATE
</if>
where 5,6,7 is the IDs of the templates you want to exclude. If that doesn't work, try surrounding the $footer_advertisement value in the header/footer template with the code. Or finally failing that, try replacing $GLOBALS[forumid] with $forum[forumid] or $foruminfo[forumid].
Can't remember which will work, but one of them definitely will.