What would the if condition be to exclude certain forums. My plan is to not have ads show up in certain sections of my site.
Thanks
This is a discussion on If condition for excluding forums within the General Discussion forums, part of the vBulletin SEO Discussion category; What would the if condition be to exclude certain forums. My plan is to not have ads show up in ...
depending on what script your on, they are different.
showthread
<if condition="$forum[forumid] == XX">
forumdisplay
<if condition="$foruminfo[forumid] == XX">
multiples, you can put into an array.
if this is a global template, you can merge and or them together (ie, in the nav bar)
something like
<if condition="(in_array($forum['forumid'], array(x,y,z))) OR (in_array($foruminfo['forumid'], array(x,y,z)))">
do something only for these
<else />
do somethign else
</if>