Hi, the default sorting was ASC, and I want to change it by descending by below code
which is not working, can any one help?
//re order the product sorting to descending
unction woocommerce_catalog_orderby( $args ) {
if(!$_GET[‘orderby’]) {
$args[‘orderby’] = ‘menu_order’;
$args[‘order’] = ‘desc’;
}
return $args;
}
Hey YongyanLi,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look? Where did you get the code? Have you tried doing it via settings?
Best regards,
Victoria
Hi, thanks
I’ve solved it on my own