Quote:
Originally Posted by NuclioN
We have 15 subforums and i can't figure out how to implement these extra icons in this script. Could you make a sort of 'etc lines' so i can see how extra on/off buttons must be placed? Great addon.
|
You have to edit the condition part.
PHP Code:
<if condition = "$forum[forumid] == 'xx' or $forum[forumid] == 'xx' or $forum[forumid] == 'xx' ">
you have to repeat the following piece of code in between the last [
' ] and
[ " ] for every extra forum you want.
PHP Code:
or $forum[forumid] == 'xx'
Heres an example:
Quote:
<if condition="$forum[forumid] == 'xx' or $forum[forumid] == 'xx' or $forum[forumid] == 'xx' or $forum[forumid] == 'xx' or $forum[forumid] == 'xx' ">
|