mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://stackoverflow.com/questions/74212902/how-to-hide-this-from-woocommerce-order-page/74217649
5 lines
231 B
Text
5 lines
231 B
Text
//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');
|