Quote:
Originally Posted by lasto
what would be the code to show on a few forumdisplays but not others ?
|
You should read through the entire thread before replying
Quote:
If you want to make it display in certain forums, go into the template FORUMDISPLAY
Code:
Find:
HTML Code:
<if condition="$show['threadslist']">
Add Above:
HTML Code:
<if condition="$forumid == 1">$hs_sotw</if>
OR if you want it to display in multiple forums...
HTML Code:
<if condition="in_array($forumid, array(1,2,2))">$hs_sotw</if>
1, 2, and 3 being the forumid's, this should work perfectly fine. If you want you can use more than three forums.
|