Nội dung

Code function

Bạn chỉ cần thêm đoạn code vào file functions.php 

add_filter( 'manage_edit-shop_order_columns', 'add_payment_method_custom_column', 20 );
    function add_payment_method_custom_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_custom_column_content' );
    function add_payment_method_custom_column_content( $column ) {
     global $post;
     if ( 'order_payment' === $column ) {
     $order = wc_get_order( $post->ID );
     echo $order->payment_method_title;
     }
 }

Và đây là kết quả

Thêm cột phương thức thanh toán trong admin WooCommerce

Chỉ đơn giản thế thôi. Chúc bạn thành công !

Bạn đã tới tận cùng thế giới!
Contact