Hi could you tell me how to use this setup cause can't find it in examples.
I want to use shipping costs per every item for 1 categorie (big) and different shipping costs for other categories (small).
If only items from categorie (small) are bought it should be 6.95
If customer also buy's item form (big) small should not be applied.
I have this for first part but guess it can be smarter 39+10 for every extra till max 79:
articles==1; ShippingWithTax=39
articles==2; ShippingWithTax=49
articles==3; ShippingWithTax=59
articles==4; ShippingWithTax=69
articles==5; ShippingWithTax=79
I read this but not shure how to combine these together:
open-tools.net/forum/vm-shipping-by-rule...,-4-shipping-$5.html
Condition=contains_any(Categories, 3,4); Shipping=5+5*evaluate_for_categories(articles, 3,4)
Condition=contains_only(Categories, 1,2); Shipping=0
Thanks in advance,
Pas