D
D
DMax9212018-12-13 17:21:44
WordPress
DMax921, 2018-12-13 17:21:44

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 question

Ask a Question

731 491 924 answers to any question