Topic:
How can we remove payment method from emails in woocommerce using a filter?
Solution:
Using below filter we can remove payment method from emails.
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;
}
No comments:
Post a Comment