[ic] please help

Steve & Patti Getzinger steveandpatti@wubs.org
Thu, 07 Dec 2000 09:54:02 -0500


Bob Curtis wrote:

> I am being really dumb, I know, but what is the best way to set a fixed rate of shipping
> to all products unless they are being delivered to a specific town.
> (i.e. Everything cost £5 shipping unless it is delivered to Cambridge in which case it is
> free)
>
> I am getting really confused about this, and I would really love some good pointers.
> Thanks alot,
> Bob Curtis
>
> _______________________________________________
> Interchange-users mailing list
> Interchange-users@www.minivend.com
> http://www.minivend.com/mailman/listinfo/interchange-users

[if [value city] eq cambridge]
blah
[else]
blah
[/else]
[/if]

Maybe something as simple as that? Naturally the [value city] would have to be the correct
syntax for that field on the form.

Steve