Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // WooCommerce - Remove payment method from order items tables
- add_filter( 'woocommerce_get_order_item_totals', 'remove_payment_method', 40 );
- function remove_payment_method( $total_rows ) {
- if ( isset( $total_rows['payment_method'] ) ) {
- unset ( $total_rows['payment_method'] );
- }
- return $total_rows;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement