Reputation: 33
I want to create a function for woocommerce with which when a visitor adds more than one product in their cart, $2 is added in addition every product quantity to the shipping cost for every product.
For example one product, shipping cost is applicable. For additional product or more than 1 quantity it adds $2 to the shipping cost.
Upvotes: 1
Views: 3337
Reputation: 11
8.00+(2.00*([qty]-1)) Will subtract the original item and not add the addon uuntil there are more than one items.
Upvotes: 1
Reputation: 253859
This can be do through settings in your "flat rate" shipping method cost field.
You will be able to set the following in the "flat rate" shipping method cost field:
8.00+(2.00*[qty])
Upvotes: 4