Question: How can we remove payment method from emails in woocommerce?
Answer: We can use below woocommerce filter to remove payment method from emails in woocommerce.
1 2 3 4 5 6 | 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