Log in

View Full Version : If Conditions Help


Steve123
03-03-2004, 11:55 PM
Hey Guys and Gals,

Just needing some help with the if template statments.

Is it possible to make a

<if condition!="$indexpage">
not on index page
</if>

I know can i do it like this.
<if condition!="$indexpage">
</ else>
not on index page
</if>

But i was just wondering if you can use =! (not equal), as it does not seem to be working.

Thanks
/Steve

Brad
03-04-2004, 12:11 AM
You can but not the way you are trying to do it,

Try this:

<if condition="!$indexpage">stuff</if>

or this

<if condition="$indexpage != something">stuff

Steve123
03-04-2004, 12:26 AM
<if condition="!$indexpage">stuff</if>

worked

thanks :)