Skip to content

Instantly share code, notes, and snippets.

@corsonr
Last active April 9, 2022 15:38
Show Gist options
  • Save corsonr/6182904 to your computer and use it in GitHub Desktop.
Save corsonr/6182904 to your computer and use it in GitHub Desktop.
WooCommerce - Add custom fee to cart
<?php
/**
* WooCommerce Extra Feature
* --------------------------
*
* Add custom fee to cart automatically
*
*/
function woo_add_cart_fee() {
global $woocommerce;
$woocommerce->cart->add_fee( __('Custom', 'woocommerce'), 5 );
}
add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' );
@deyan4
Copy link

deyan4 commented Sep 6, 2017

@bangbang1409, have you found out how to add a select option?

Thank you!

@baker13
Copy link

baker13 commented Sep 26, 2017

Hi guys I used this code and it worked 100% for me. but I want to ask does anyone know how I can add a coupon for this custom fee?

@asadaly111
Copy link

Working 100% :) Thanks buddy

@Darshan789
Copy link

Hey, I have a problem to add the fees using ajax on cart page.
On my cart I have added one checkbox. If checkbox checked then the fee add to the cart and updated the cart totals.
But right now, its' added to cart but on checkout the fees removed.
Can you please help for this?

check this link: http://www.simplepickle.com/

Thank you.

@pooju07
Copy link

pooju07 commented Sep 19, 2018

want to add donation checkbox in cart page this is working perfectly finr bt i want checkbox and accordingly price should be updated

@sanderlt
Copy link

how to make to choose value option from select list? :)

@mcpat1993
Copy link

I got this working so that the fee is properly assessed and the customer pays the new total including the fee. I actually want to pass that fee on to the vendor. How would I go about adding that to the total they are able to withdraw?

@vp956009
Copy link

vp956009 commented Jun 8, 2021

Extra Cost For Woocommerce you can use this plugin that is good for it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment