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');