WooCommerce : Add fee for Cash on Delivery payment method (cod)
-
hello to everything, there is the code to apply a fixed cost only for the payment “Cash on Delivery” ?
I found this code, it works but applies a fixed cost to all payment methods …. and I do not know how to make it work only with the payment Cash on Delivery
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’ );
}Thanks for your help
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘WooCommerce : Add fee for Cash on Delivery payment method (cod)’ is closed to new replies.