Forked from mikejolley/gist:c4606aa52754b334f0f1bbe7e5b5ca6b
Created
October 22, 2020 05:22
-
-
Save getmanzooronline/a16605fb8e657280dc207356a8ff3e67 to your computer and use it in GitHub Desktop.
WooCommerce - remove payment method from emails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // Do not include this if already open! | |
/** | |
* Code goes in theme functions.php. | |
*/ | |
add_filter( 'woocommerce_get_order_item_totals', 'custom_woocommerce_get_order_item_totals' ); | |
function custom_woocommerce_get_order_item_totals( $totals ) { | |
unset( $totals['payment_method'] ); | |
return $totals; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment