我正在使用 Woocommerce CSV导出插件。
我希望有一种方法可以检查客户是否为新用户,如果是,则按顺序编写自定义meta-key
true
值<的元数据/ strong>即可。
但如果用户不是新用户,则不会发生任何事情。
我首先想到的是WP用户的创建日期(user_registered)。但我认为有更好更快的方式。换句话说,我怎么知道这是否是客户的第一个订单...
我的目标:如果此客户是第一次订购,请在导出CSV中为此订单设置 TRUE
值。
然后我尝试了to use this answer code但没有成功。
我的问题:
我怎么能做到这一点?
由于
答案 0 :(得分:2)
根据this answer code (我最近制作的),可以在数据库 wp_postmeta
<中添加一个元键/值的函数/ strong>新客户第一笔订单的表格。所以我们将以这种方式改变条件函数:
function new_customer_has_bought() {
$count = 0;
$new_customer = false;
// Get all customer orders
$customer_orders = get_posts( array(
'numberposts' => -1,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id()
) );
// Going through each current customer orders
foreach ( $customer_orders as $customer_order ) {
$count++;
}
// return "true" when it is the first order for this customer
if ( $count > 2 ) // or ( $count == 1 )
$new_customer = true;
return $new_customer;
}
此代码位于活动子主题或主题的function.php文件中,或插入php文件中。
谢谢你的使用:
add_action( 'woocommerce_thankyou', 'tracking_new_customer' );
function tracking_new_customer( $order_id ) {
// Exit if no Order ID
if ( ! $order_id ) {
return;
}
// The paid orders are changed to "completed" status
$order = wc_get_order( $order_id );
$order->update_status( 'completed' );
// For 1st 'completed' costumer paid order status
if ( new_customer_has_bought() && $order->has_status( 'completed' ) )
{
// Create 'first_order' custom field with 'true' value
update_post_meta( $order_id, 'first_order', 'true' ); needed)
}
else // For all other customer paid orders
{
// udpdate existing 'first_order' CF to '' value (empty)
update_post_meta( $order_id, 'first_order', '' );
}
}
此代码位于活动子主题或主题的function.php文件中,或插入php文件中。
现在仅 第一个新客户订单,您将拥有密钥
'_first_customer_order'
的自定义元数据和值 true 。
要为定义的订单ID获取此值,您将使用此值(最后一个参数表示它是一个字符串):
// Getting the value for a defined $order_id
$first_customer_order = get_post_meta( $order_id, 'first_order', false );
// to display it
echo $first_customer_order;
所有代码都经过测试并且有效。
参考