当有变体分配并且您想根据变体编辑库存时,变体列表不符合逻辑(在管理员中)。当您想编辑 1 个变体时,您必须搜索整个列表 (250+) 才能找到他。
我在这里找到了解决方案; 在 Woocommerce 商店中更改产品页面上属性/变体的字母排序
但是当我编辑批量编辑价格并保存产品时,只有前 41 个被更新。正是因为这条线;
'orderby' => 'menu_order',
这是我的代码;
$args = array(
'post_type'=>'product_variation',
'post_status' => array( 'private', 'publish' ),
'posts_per_page' => -1,
'meta_key' => 'attribute_pa_kleur', //rename with your attributes
'post_parent' => $post->ID,
'meta_query' => array(
array(
'key' => 'attribute_pa_kleur' //rename with your attributes
),
)
);
我怎样才能解决这个问题?谢谢!