Home › Forums › WoodMart support forum › Remove popularity filter › Reply To: Remove popularity filter
January 22, 2024 at 2:46 pm
#532175
Aizaz Imtiaz Awan
Keymaster
Hello,
Try to add the following PHP code in the function.php of the child theme.
function my_woocommerce_catalog_orderby( $orderby ) {
unset($orderby["popularity"]);
return $orderby;
}
add_filter( "woocommerce_catalog_orderby", "my_woocommerce_catalog_orderby", 20 );
Best Regards.