First of all very nice and helpful plugin, but I seem to have some problems getting it to work with my set-up. Most probably I have a syntax error or something, but somehow I seem not be able to find it...
I want to achieve that all orders below $500 get automatically a $68 delivery fee, except for 3 dedicated states, which shall have $106 delivery fee and 2 states, which shall have no possibility to get delivery.
All orders over $500 are free for the first set of States again, except for the same 3 states like before, they shall get $38 delivery fee and still the 2 states shall have no delivery at all no matter what the amount of purchase..
This is the rules I have placed in, however for some reason, for all states only the very first rule is applied and none of the other...
Name=Delivery Fee; 1<=Amount<500; state2 in list("CW", "EA", "KC", "KT", "KW", "SK", "ST", "SP", "SO", "TP", "TW", "WC", "WT", "YT"); Shipping=68.00
Name=Extended Delivery Fee; 1<=Amount<500; state2 in list("TM", "YL", "LT"); Shipping=106.00
Name=NO Delivery to Outlaying Islands, please pick up at one of our shops; 1<=Amount; state2 in list("IL", "NO"); NoShipping
Name=Free Delivery; 500<= Amount; state2 in list("CW", "EA", "KC", "KT", "KW", "SK", "ST", "SP", "SO", "TP", "TW", "WC", "WT", "YT"); 0
Name=Extra Delivery Fee; 500<= Amount; state2 in list("TM", "YL", "LT"); Shipping=38.00
Any help would be very appreciated
Thanks
Maxi