Hide the Stripe order fees in WooCommerce

Hide the Stripe order fees in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

//Hides the Stripe fee
add_filter( 'wc_stripe_hide_display_order_fee','__return_false');

//Hides the net total of the transaction without the charges of Stripe.
add_filter( 'wc_stripe_hide_display_order_payout','__return_false');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.