Quote:
My first is, what exactly(Which template?) does $childforumbits import?
|
(One or more of) the forumhome_forumbit_level* templates.
Quote:
Which brings me to my second question, when using an IF condition how do I go about saying 'if value is equal to 2 then do this', and 'if not and is equal to 3, do this', for example;
|
HTML Code:
<if condition="$var == 1">
// 1
<else />
<if condition="$var == 2">
// 2
<else />
<if condition="$var == 3">
// 3
</if>
</if>
</if>
It would be nice if templates supported the else if & switch constructs.