Woocommerce custom subscription fee adds to recurring total

I would like to ask how to add a custom fee to the periodic woocommerce subscription amount?

Found this on the net:

function woo_add_cart_fee() {
  global $woocommerce;
  $woocommerce->cart->add_fee( __('Custom', 'woocommerce'), 5 );
}

add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' );

However, this specific function is only for a regular product. DOES NOT SIGN - does not add commission to recurring amounts.

+4
source share
1 answer

WooCommerce subscriptions currently do not support adding fees to recurring amounts.

0
source

Source: https://habr.com/ru/post/1655273/


All Articles