Home › Forums › WoodMart support forum › Order of the products in Arichive page › Reply To: Order of the products in Arichive page
May 17, 2023 at 10:38 am
#467592
hodaka88888
Participant
Ok , I asked ChatGPT and solved this issue.
I added this code below into functions.php and it worked.
add_filter( 'woocommerce_default_product_sorting', function( $orderby )
{
return 'rating_desc';
} );
Thank you