I want to set shipping cost quantity wise on my woocommerce theme. I want to do this option :
For 1 to 5 products shiping cost will be 15%.
More than 5 products whipping cost will be $6.99 .
Can i add this shipping option without a plugin ?
I want to set shipping cost quantity wise on my woocommerce theme. I want to do this option :
For 1 to 5 products shiping cost will be 15%.
More than 5 products whipping cost will be $6.99 .
Can i add this shipping option without a plugin ?
Comments are closed.
You need to hook a function to
woocommerce_calculate_totals
action which is triggered right before calculating the final cart total. Thewoocommerce_calculate_totals
action provides theWC_Cart
instance, on which you can perform manipulation as per your requirement.For further reference regarding changable variables refer to WC_Cart documentation.
The Pranav solution works if you call the add_action inside the init hook, like this: