admin管理员组文章数量:1130349
In Woocommerce Category page default sort dropdown has like below options.
My question is what/how products sort by Popularity ? Not a code What is the measurement ? like if sort Price: Low to High,then we know those product sort Low price to High then How about Popularity ?
In Woocommerce Category page default sort dropdown has like below options.
My question is what/how products sort by Popularity ? Not a code What is the measurement ? like if sort Price: Low to High,then we know those product sort Low price to High then How about Popularity ?
Share Improve this question asked Nov 16, 2018 at 6:09 RikaRika 1131 silver badge6 bronze badges 2- popularity — you can choose this option if you want products to be sorted from most popular to the least popular ones; – vikrant zilpe Commented Nov 16, 2018 at 6:37
- please check this link code:github/woocommerce/woocommerce/blob/… – vikrant zilpe Commented Nov 16, 2018 at 6:39
2 Answers
Reset to default 0'Sort By Popularity' filter sort products based on total sales of product
Well the option Sort by Popularity will sort the products based on Total sales. It means the product will sort from Higher sales to Lower sales.
You can get more idea from below code :-
$args['meta_key'] = 'total_sales';
add_filter( 'posts_clauses', array( $this, 'order_by_popularity_post_clauses' ) );
In Woocommerce Category page default sort dropdown has like below options.
My question is what/how products sort by Popularity ? Not a code What is the measurement ? like if sort Price: Low to High,then we know those product sort Low price to High then How about Popularity ?
In Woocommerce Category page default sort dropdown has like below options.
My question is what/how products sort by Popularity ? Not a code What is the measurement ? like if sort Price: Low to High,then we know those product sort Low price to High then How about Popularity ?
Share Improve this question asked Nov 16, 2018 at 6:09 RikaRika 1131 silver badge6 bronze badges 2- popularity — you can choose this option if you want products to be sorted from most popular to the least popular ones; – vikrant zilpe Commented Nov 16, 2018 at 6:37
- please check this link code:github/woocommerce/woocommerce/blob/… – vikrant zilpe Commented Nov 16, 2018 at 6:39
2 Answers
Reset to default 0'Sort By Popularity' filter sort products based on total sales of product
Well the option Sort by Popularity will sort the products based on Total sales. It means the product will sort from Higher sales to Lower sales.
You can get more idea from below code :-
$args['meta_key'] = 'total_sales';
add_filter( 'posts_clauses', array( $this, 'order_by_popularity_post_clauses' ) );
本文标签: categoriesWoocommerce Category Sort Dropdown
版权声明:本文标题:categories - Woocommerce Category Sort Dropdown 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749176193a2327836.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论