mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://stackoverflow.com/questions/66010786/how-to-remove-payment-method-from-woocommerce-order-confirmation-email
8 lines
333 B
Text
8 lines
333 B
Text
add_filter( 'woocommerce_get_order_item_totals', 'remove_payment_method_row_from_emails', 10, 3 );
|
|
function remove_payment_method_row_from_emails( $total_rows, $order, $tax_display ){
|
|
// On Email notifications only
|
|
if ( ! is_wc_endpoint_url() ) {
|
|
unset($total_rows['payment_method']);
|
|
}
|
|
return $total_rows;
|
|
}
|