Guest User

Untitled

a guest
Apr 19th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. add_filter( 'woocommerce_get_order_item_totals', 'loc_woo_unset_payment_from_email' );
  2. function loc_woo_unset_payment_from_email( $totals )
  3. {
  4. unset( $totals['payment_method'] );
  5. return $totals;
  6. }
Add Comment
Please, Sign In to add comment