Hi,
Can anyone explain to me why the below is not working?
I bsically want to output a different text, bases on the value in the shopping cart.
I found this article that explains how to use && (and) and || (or) statements in Dynamicweb:
http://devierkoeden.com/articles/dynamicwebs-best-kept-secrets-part-2-else-statements-and-support-for-and-and-or.aspx
<!--@If(Ecom:Order.Price.PriceWithoutVAT>5000 && Ecom:Order.Price.PriceWithoutVAT<10000)-->
10000 - Price: <!--@Ecom:Order.Price.PriceWithoutVAT--><br />
<!--@EndIf-->
<!--@If(Ecom:Order.Price.PriceWithoutVAT>0 && Ecom:Order.Price.PriceWithoutVAT<5000)-->
5000 - Price: <!--@Ecom:Order.Price.PriceWithoutVAT--><br />
<!--@EndIf-->