Quote:
Originally Posted by hbalagh1
how can we not have this display on certain forums 
thanks
|
You should be able to test against $thread['forumid'] with something like:
don't display in forum id 22
Code:
<if condition="$GLOBALS['adsense_position'] == $post['postcount'] && $GLOBALS['adsense_position'] > 0 && $thread['forumid'] != 22">
don't display in forums id 21,22 or 23
Code:
<if condition="$GLOBALS['adsense_position'] == $post['postcount'] && $GLOBALS['adsense_position'] > 0 && ! in_array($thread['forumid'],array(21,22,23))">
I haven't tested these - let me know how you get on.