Answer the question
In order to leave comments, you need to log in
How to sort products by rating or first those with a promotion?
Hello!
Please tell me how to sort products in categories by rating or display first those that have a discount?
So I found a function, it displays only by price, that is, first those with the highest price ...
add_filter('woocommerce_get_catalog_ordering_args', 'my_woocommerce_order');
function my_woocommerce_order($args){
$args['orderby'] = 'meta_value_num';
$args['order'] = 'DESC';
$args['meta_key'] = '_price';
return $args;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question