在 Woocommerce 3+ 中的我的帐户订单表中添加自定义列 [英] Add a custom column to My Account Orders table in Woocommerce 3+

查看:23
本文介绍了在 Woocommerce 3+ 中的我的帐户订单表中添加自定义列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Woocommerce 3.5.x 在用户帐户(我的帐户)区域有一个特殊页面,显示用户以前的订单.

此页面现在默认显示为 5 列.

这里是 woocommerce Orders 区域的截图,有 5 列:

<块引用>

如果您要在表格 html 输出中进行更改,则必须覆盖模板文件:myaccount/orders.php

Woocommerce 3.5.x has a special page at the user account (My Account) area where it displays the user's previous Orders.

This page is now 5 column displays as default.

Here the screenshot of the woocommerce Orders area with 5 column:

My Orders

I Can't find the way to change this.

How can I add a new column in the default?

解决方案

This requires 2 functions that will add a new column

The second function hook is a composite hook: woocommerce_my_account_my_orders_column_{$column_id} where {$column_id} need to be replaced by the column key slug that is set in the first function.

That second function manage the displayed row values and you can add for example a custom field to get custom order meta data values.

The code:

add_filter( 'woocommerce_account_orders_columns', 'add_account_orders_column', 10, 1 );
function add_account_orders_column( $columns ){
    $columns['custom-column'] = __( 'New Column', 'woocommerce' );

    return $columns;
}

add_action( 'woocommerce_my_account_my_orders_column_custom-column', 'add_account_orders_column_rows' );
function add_account_orders_column_rows( $order ) {
    // Example with a custom field
    if ( $value = $order->get_meta( '_custom_field' ) ) {
        echo esc_html( $value );
    }
}

Code goes in function.php file of your active child theme (or active theme). Tested and works.


You are done and have added a custom column to My account orders table:

If you which to make changes in the table html output, you will have to override the template file: myaccount/orders.php

这篇关于在 Woocommerce 3+ 中的我的帐户订单表中添加自定义列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆