[ic] newbie: don't show price=0.00

Ron Phipps interchange-users@interchange.redhat.com
Mon Jan 14 19:23:00 2002


> From: interchange-users-admin@interchange.redhat.com
[mailto:interchange-
> users-admin@interchange.redhat.com] On Behalf Of Luc Knaven
> 
> I don't want to show the price on my flypage when [item-price]=0.00
(field
> price in the tabel products)
> 
> I tried [if-item-data price = 0.00]Price :[item-price]
[/if-item-data]
> but
> that doesn't work.
> How to do this ?
> 
> Thanks for any help

Try:

[seti price][item-price noformat=1][/seti]

[if scratch price eq '0.00']
  Do this if price is 0.00
[else]
  Do this if price is not 0.00
[/else]
[/if]

Good luck,
-Ron