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.
source
share