Hi there,
I purchased the advanced version of the plug in, and I'm trying to set up my flat rate shipping costs per quantities of articles in a shipping class. My code isn't working and I can't figure out why. It works for just the "small-box" shipping class, but when another product is added to the cart, it gets messed up.
Below is what I'm working with:
Condition=contains_only(ShippingClasses, “small-box”); articles<8; Shipping=6.99
Condition=contains_only(ShippingClasses, “small-box”); articles<15; Shipping=13.99
Condition=contains_any(ShippingClasses, "medium-box"); Shipping=13.99
Condition=contains_only(ShippingClasses, "medium-box"); articles<5; Shipping=13.99
Condition=contains_only(ShippingClasses, “small-box”); articles<21; Shipping=18.99
Condition=contains_only(ShippingClasses, "medium-box"); articles<7; Shipping=18.99
Condition=contains_any(ShippingClasses, “large-box”); articles<3; Shipping=18.99
This is essentially what I'm trying to do -
Small Box - 7 Items
Medium Box - 14 Small Items or 4 Medium Items
Large Box - 2 Large Items or 20 Small Items or 6 Medium Items
I want it to be if any medium or large items are added to the cart, it automatically gets bumped up to that price as well.
Thank you in advance!