我正试图找出如何为现有产品添加变体的方式,而不是最初的变量产品。
所以我有一个产品衬衫,我有另外一个有不同颜色的库存,所以我的产品进口商需要为这个现有产品添加一个新的变化。
wp_set_object_terms ($product_id, 'black', 'pa_color', 1);
$attr_data = Array(
'pa_color'=>Array(
'name' => 'pa_color',
'value' => '',
'is_visible' => '1',
'is_variation' => '1',
'is_taxonomy' => '1'
)
);
update_post_meta($product_id, '_product_attributes', $attr_data);
这会为我的产品添加颜色,但会破坏产品上的所有现有属性。拉动现有的_product_attributes只会给我序列化的属性,所以只是在所有内容之上添加新的变体是行不通的。
有什么想法吗?
答案 0 :(得分:1)
基本上问题是product_attribute不是单个变量,似乎wp_set_object_terms中没有合并
我解决了这个问题:
wp_set_object_terms ($product_id, 'black', 'pa_color', 1);
$attr_data = Array(
'pa_color'=>Array(
'name' => 'pa_color',
'value' => '',
'is_visible' => '1',
'is_variation' => '1',
'is_taxonomy' => '1'
)
);
$product = new WC_Product($product_id);
update_post_meta( $product_id, '_product_attributes', array_merge($product->get_attributes(), $attr_data) );
答案 1 :(得分:-1)
我有同样的问题,刚刚解决了。
获取product_type = variable
的term_id/**
SELECT $wpdb->terms.term_id FROM $wpdb->terms, $wpdb->term_taxonomy
WHERE name = 'variable'
AND taxonomy = 'product_type'
AND $wpdb->terms.term_id = $wpdb->term_taxonomy.term_id
LIMIT 1
**/
$variable_term_id = 4;
wp_set_object_terms( $product_id, $variable_term_id, 'product_type' , true); //for variable product
:)