Payment method in woocommerce order list
-
Hello, I have been using this custom snippet to display payment method in orders list. After switching to HPOS this no longer works. Can anybody please help?
add_filter( 'manage_edit-shop_order_columns', 'add_payment_method_column', 20 ); function add_payment_method_column( $columns ) { $new_columns = array(); foreach ( $columns as $column_name => $column_info ) { $new_columns[ $column_name ] = $column_info; if ( 'order_total' === $column_name ) { $new_columns['order_payment'] = __( 'Payment method', 'my-textdomain' ); } } return $new_columns; } add_action( 'manage_shop_order_posts_custom_column', 'add_payment_method_column_content' ); function add_payment_method_column_content( $column ) { global $post; if ( 'order_payment' === $column ) { $order = wc_get_order( $post->ID ); echo $order->payment_method_title; } }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Payment method in woocommerce order list’ is closed to new replies.