Woocommerce Shipping Variations & Calculations
Complex Option
If you need to calculate special shipping costs such as:
First item (one item in cart) = $10.50
Second and extra items in cart = + $3.50 per extra item
Use the following calculation: 10.50+(3.50*([qty]-1))
Simpler option
If you need to calculate special shipping costs such as:
First item (one item in cart) = $90
Second and extra items in cart = + $10 per item
Use the following calculation: [qty]*10+80