我想在WooCommerce的“管理订单列表”页面中添加一列,它会通知我用户是否是他第一次购买。
我认为此“ Checking if customer has already bought something in WooCommerce”可以用于我的情况。
但是我不知道如何在WooCommerce的“订单”页面上的列中添加它。
使用
manage_edit-shop_order_columns
和manage_shop_order_posts_custom_column
您可以添加一个新列。使用
wc_get_customer_order_count( $user_id )
,您将获得客户的总订单。
注1:因为访客没有
wc_get_customer_order_count( $user_id )
,所以我们使用$user_id
确定当前和以前的订单。注2:我部分使用了以下
$billing_email
-信用:@$billing_email
那么你就得到了
function