Quote:
Originally Posted by heynurse
I'm looking for the same thing, actually, I am just looking to have specific advertising banner code to be in specific forums for targeting reasons, I don't not necessarily the entire header.
Any suggestions for that? I'm new to this whole conditional thing?
|
Every forum has a forumid, you can check that in the admincp or when you enter the forum in the url, the conditional:
<if condition="$_GET[forumid]==1">
yourheaderhere
</if>
compares the forumid and in this case if the id is '1' whatever you have in "yourheaderhere" (html code probably) will appear only when you enter the forum 1. You can put as many conditions as you want only changing the forumid for different headers.