最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Woocommerce: sorting variable product

programmeradmin5浏览0评论

How do I show variations sorted by quantity in stock? I can override or extend the WC_Product_Variable class, but this solution doesn't seem optimal. What other options are there?

How do I show variations sorted by quantity in stock? I can override or extend the WC_Product_Variable class, but this solution doesn't seem optimal. What other options are there?

Share Improve this question edited Apr 16, 2019 at 13:09 Alexander Taurus asked Apr 16, 2019 at 6:57 Alexander TaurusAlexander Taurus 32 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can use the woocommerce_get_children filter:

function wpse_filter_variations( $variations, $product, $false ) {
    // Do you sorting here

    return $variations;
}
add_filter( 'woocommerce_get_children', 'wpse_filter_variations', 10, 3 );
发布评论

评论列表(0)

  1. 暂无评论