如何列出基于特定产品变型的订单商品?
给定一个 变体ID ,我想生成一个包含该特定变体的所有 订单商品 的列表。
就我而言,我使用变体表示日期,并且产品本身是重复发生的事件,因此,此操作的目的是列出参加该特定日期的人员。
如果可以通过简单的用法(例如get_posts
使用)meta_keys
或类似的方法来完成此操作,那将是令人惊讶的,但是否则我猜想自定义查询将是这种方式。
我只是似乎无法弄清楚在这种情况下表格是如何关联的,或者是否以可搜索的方式存储表格。
任何帮助,非常感谢。
谢谢!
有很多方法可以做到这一点。在这里,我在一个自定义函数中使用一个SQL查询,并以一个 (要设置的变体ID) 作为参数:
$variation_id
__
function get_all_orders_items_from_a_product_variation( $variation_id ){
global $wpdb;
// Getting all Order Items with that variation ID
$item_ids_arr = $wpdb->get_col( $wpdb->prepare( "
SELECT `order_item_id`
FROM {$wpdb->prefix}woocommerce_order_itemmeta
WHERE meta_key LIKE '_variation_id'
AND meta_value = %s
", $variation_id ) );
return $item_ids_arr; // return the array of orders items ids
}
代码在您的活动子主题(或主题)的function.php文件中,或者在任何插件文件中。
使用方法 (例如,此处以版本ID 41) :
这将显示该变体ID的订单商品ID的列表以及一些数据(例如)。
$items_ids = get_all_orders_items_from_a_product_variation( 41 );
// Iterating through each order item
foreach( $items_ids as $item_id ){
// Getting some data (the color value here)
$item_color = wc_get_order_item_meta( $item_id, 'pa_color', true );
// Displaying some data related to the current order item
echo 'Item ID: '. $item_id . ' with color "' . $item_color .'"<br>';
}
此代码已经过测试并且可以工作。
获取订单ID (已更新)
现在,如果您需要获取所有订单ID,则可以通过以下方式在该函数内使用另一个查询:
function get_all_orders_that_have_a_product_variation( $variation_id ){
global $wpdb;
// Getting all Order IDs with that variation ID
$order_ids_arr = $wpdb->get_col( $wpdb->prepare( "
SELECT DISTINCT items.order_id
FROM {$wpdb->prefix}woocommerce_order_items AS items
LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS itemmeta ON items.order_item_id = itemmeta.order_item_id
WHERE meta_key LIKE '_variation_id'
AND meta_value = %s
", $variation_id ) );
return $order_ids_arr; // return the array of orders ids
}
代码在您的活动子主题(或主题)的function.php文件中,或者在任何插件文件中。
使用方法 (例如,此处始终使用版本ID 41) :
这将显示此变体ID的订单ID列表及其状态(例如)。
$orders_ids = get_all_orders_that_have_a_product_variation( 41 );
// Iterating through each order item
foreach( $orders_ids as $order_id ){
// Getting an instance of the order object
$order = wc_get_order($order_id);
// Displaying some data related to the current order
echo 'Order #'. $order_id . ' has status "' . $order->get_status() .'"<br>';
}
此代码已经过测试并且可以工作。
您还可以通过以下方式在多维数组中组合更复杂的数组,订单ID及其相关的商品ID:
function get_all_orders_and_item_ids_that_have_a_product_variation( $variation_id ){
global $wpdb;
// Getting all Order IDs and item ids with that variation ID
$results = $wpdb->get_results( $wpdb->prepare( "
SELECT items.order_id, items.order_item_id AS item_id
FROM {$wpdb->prefix}woocommerce_order_items AS items
LEFT JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS itemmeta ON items.order_item_id = itemmeta.order_item_id
WHERE meta_key LIKE '_variation_id'
AND meta_value = %s
", $variation_id ), ARRAY_A );
return $results; // return a multi-dimensional array of orders Ids / items Ids
}
我试图获得变量product属性的名称,在购物车中,但有些东西不对。我不明白当一个对象被保护时,我怎么能得到变异值 这是$product中对象reurns的一部分
我将从我的WoocCommerce商店定制感谢页面。为此,我加了一句布兰科谢谢。php进入WooCommerce签出目录。 我试过这个密码 但是变量$order\u id为空。 有人知道我是如何在感谢页面上获得订单标识的吗?
本文向大家介绍sharepoint 通过ID获取列表项,包括了sharepoint 通过ID获取列表项的使用技巧和注意事项,需要的朋友参考一下 示例
我想按价格、日期和发布年份等项目对产品进行排序。在发布年份的情况下,我做了一个分类法=发布年份 但它是不工作.我怎么能改变代码可能排序按发布年份顺序?
问题内容: 在WooCommerce中,从以下代码行: 如何从订单ID获取WooCommerce订单详细信息? 问题答案: 3.0版以上的WOOCOMMERCE订单 自Woocommerce大型主要更新3.0+以来,事情已经发生了很多变化: 对于 对象,无法像以前一样直接访问属性,并且会引发一些错误。 现在,对象实例需要使用new 以及 getter和setter方法。 此外,还有一些用于订购商品
我试图通过WooCommerce REST API更新产品变化。我可以用这种结构创建更新endpoint: /products//变化/我不想使用parent_id。有什么方法可以更新产品只有variation_id?Variation_id和其他product_ids一样重要