WooCommerce – remove payment method from emails

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.

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