Log in

View Full Version : countdown timer only in one forum


R1lover
12-07-2006, 09:23 PM
I have created a countdown timer I would like to display only in one forum.

What code do I need to display this in the bottom of the header but I only want it to display in one forum.

Thanks in advance

paul41598
12-07-2006, 09:44 PM
<if condition="$forumid == X">
Code Here
</if>


or for (multiple forums)


<if condition="in_array($forumid, array(X,Y,Z))">
Code Here
</if>

R1lover
12-07-2006, 10:01 PM
awesome, thank you very much.