Home Forums WoodMart support forum Remove popularity filter Reply To: Remove popularity filter

#532175

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.