Adding fee for each cart item
-
I’m using a paypal snippet to add a processing fee at checkout but i was wondering if there was a way to add the processing fee for each product added to the shopping cart.
function woo_add_cart_fee() { global $woocommerce; if ( is_cart() ) { $woocommerce->cart->add_fee( __('Processing', 'woocommerce'), 3 ); } } add_action( 'woocommerce_before_cart_table', 'woo_add_cart_fee' );Any help is appreciated.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Adding fee for each cart item’ is closed to new replies.