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 badges1 Answer
Reset to default 0You 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 );
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745583489a4634391.html
评论列表(0条)