If you want to add a Handling Fee in WooCommerce you now have to add the code below. You would then add this to your functions.php file in your child theme in WordPress. Save the file then you now have a $5 handling fee! 🙂
add_action( 'woocommerce_cart_calculate_fees','endo_handling_fee' ); function endo_handling_fee() { global $woocommerce; if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return; $fee = 5.00; $woocommerce->cart->add_fee( 'Handling', $fee, true, 'standard' ); }
Add A Handling Fee In WooCommerce was last modified: December 7th, 2015 by
Tip: Click on images to make them larger.
If you find anything wrong on this page or need further assistance please comment below or contact me.
🙂
Please like, share and subscribe.
Advanced Programming Made Easy
I hope you enjoyed the article. If I was able to help you please consider a tip for the content.
One Time Tip
Reoccuring Tips
Cool People Share:

2 Comments
Thanks! But what if I only want handling fee on Physical Products and not Digital Products. I have physical shipping class that calculates shipping and digital that is free shipping and no tax …
Thanks!!
That’s a good question. I imagine that you can use custom shipping classes in a case like that.