我知道已经有很多问题要解决,但是我无法弄清楚如何从woocommerce订单中获取自定义产品属性。这是我尝试的方法:
$order = wc_get_order( $order_id );
$order_data = $order->get_data();
foreach ($order->get_items() as $item_key => $item_values) {
$product = $item_values->get_product(); // Get the product
$product_id = $item_values->get_product_id(); // the Product id
$tokens = get_post_meta($product_id, 'Tokens', true);
}
我也尝试过:
$tokens = $product->get_attribute( 'Tokens' );
和
$tokens = array_shift( wc_get_product_terms( $product_id, 'Tokens', array( 'fields' => 'names' ) ) );
我的自定义产品属性的名称为“ 代币”,值为 5000 ,但是我得到了空的回报
我在做什么错了?
答案 0 :(得分:1)
对于可变产品,当产品属性未设置为变体属性时,可能会发生这种情况。
因此,当您拥有产品变体作为订单商品时,您需要获取父变量产品,以获取产品属性值(如果此产品属性没有设置为变体的属性)。
如果“令牌”产品属性属于这种情况,请尝试以下操作:
$attribute = 'Tokens';
$order = wc_get_order( 857 );
// Loop through order line items
foreach ( $order->get_items() as $item_id => $item ) {
$product = $item->get_product(); // Get the WC_Product object
// For Product Variation type
if( $item->get_variation_id() > 0 ){
$parent = wc_get_product($product->get_parent_id());
$term_names = $parent->get_attribute($attribute);
}
// For other Product types
else {
$term_names = $product->get_attribute($attribute);
}
// Testing display (the string of coma separated term names if many)
if( ! empty( $term_name ) )
echo '<p>'.$term_name.'</p>';
}
在Woocommerce 3+中经过测试并可以工作