PDA

View Full Version : News/Rule box displayed in 1 specific forum?


nando415
04-21-2004, 02:17 AM
I would like to add a box with a few rules but only want it to show up in 1 forum section, anyone know how i can do this? Im sure its simple but I wouldnt know how to make it show up on only 1 specific forum

thanks

nando415
04-29-2004, 05:57 PM
up..anyone got an idea?

nando415
05-13-2004, 02:33 AM
.......................

Grendel
05-13-2004, 06:43 AM
In template forumdisplay:

<if condition="$forum['forumid'] == X"> YOUR CODE HERE </if>
(X as the forumid of the forum where you want that rule to be).

nando415
05-13-2004, 11:57 AM
Hmmm, thanks for the reply but for some reason thats not working, i tried adding the code without that condition to see if the problem was the code i added but it shows fine.

Boofo
05-13-2004, 12:22 PM
Try this:


<if condition="$forumid == 'xx'">
code here
</if>

nando415
05-13-2004, 07:43 PM
Boofo thanks alot man! Now how would I go about making it appear in more then 1 forum? I want it displayed in about 4 subforums of this one.

thanks for the help

Boofo
05-13-2004, 09:47 PM
<if condition="$forumid == 'xx' OR $forumid == 'xx' OR $forumid == 'xx' OR $forumid == 'xx'">
code here
</if>