本文介绍了如何查看客户购买产品的次数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 woocommerce 中如何检查客户在所有订单中购买了多少次产品.
In woocommerce how to check how many times a product has been bought by a customer across all order.
我如何检查客户在他下的所有订单中可以购买产品的次数.
How can I check that how many times a product can bought by a customer across all order he made.
当前客户的产品购买历史示例:
Product one = bought 5 times
Product five = bought 1 times
Product four = bought 2 times
Product two = bought 3 times
Product three = bought 6 times
我有一个功能可以检查客户是否购买了这些产品
function is_bought_items() {
$bought = false;
$_options = get_option( 'license_page_option_name' );
$ex_product_ids = $_options['ex_product_ids_warranty'];
$targeted_products= explode(",",$ex_product_ids); //id array(4,17,28,52)
// Get all customer orders
$customer_orders = get_posts( array(
'numberposts' => -1,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id(),
'post_type' => 'shop_order', // WC orders post type
'post_status' => 'wc-completed' // Only orders with status "completed"
) );
// Going through each current customer orders
foreach ( $customer_orders as $customer_order ) {
$order = wc_get_order( $customer_order );
$order_id = $order->id;
$items = $order->get_items();
// Going through each current customer products bought in the order
foreach ($items as $item) {
// Your condition related to your 2 specific products Ids
if ( in_array( $item['product_id'], $targeted_products) ) {
$bought = true; //
}
}
}
// return "true" if one the specifics products have been bought before by customer
if ( $bought ) {
return true;
}
}
推荐答案
在遍历所有项目时...我们可以从 $item[' 在我们的数组中保存产品购买
.count
item_meta']['_qty']
While looping through all the items... we can save product purchase count
in our array from $item['item_meta']['_qty']
.
这是一个可能的实现示例...
Here is an example of possible implementation...
function get_purchased_products() {
$products = array();
// Get all customer orders
$customer_orders = get_posts( array(
'numberposts' => - 1,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id(),
'post_type' => 'shop_order', // WC orders post type
'post_status' => 'wc-completed' // Only orders with status "completed"
) );
// Going through each current customer orders
foreach ( $customer_orders as $customer_order ) {
$order = wc_get_order( $customer_order );
$items = $order->get_items();
// Going through each current customer products bought in the order
foreach ( $items as $item ) {
$id = $item['product_id'];
// If product not in array, add it
if ( ! array_key_exists( $item['product_id'], $products ) ) {
$products[ $id ] = array(
'name' => $item['name'],
'count' => 0,
);
}
// Increment Product `count` from cart quantity
$products[ $id ]['count'] += $item['item_meta']['_qty'][0];
}
}
return $products;
}
foreach ( get_purchased_products() as $id => $product ) {
echo "<p>$id <b>$product[name]</b> bought $product[count] times</p>";
}
这输出...
70 飞行忍者 购买了 7 次
37个快乐忍者购买了5次
19 优质购买1次
70 Flying Ninja bought 7 times
37 Happy Ninja bought 5 times
19 Premium Quality bought 1 times
这篇关于如何查看客户购买产品的次数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!