Hi there,
The only solution that I’ve been able to find from another thread is this:
div .product-sorting {display: none;}
Which hides the Enfold theme filter options.
However, the theme is still overriding woocommerce settings options. I’ve got woocommerce set to show ‘Newest First’. But enfold is still controlling this with it’s ‘Default’ sorting option somehow – which shows the absolute oldest products by default.
How can we disable the enfold filter? Not just hide it via css, we want woocommerce to do what we tell it to do without enfold superceding it.
Hope this makes sense :)
Thanks.
– Gerry
Hey Gerry!
Please add following code to Functions.php file in Appearance > Editor
function avia_woocommerce_frontend_search_params()
{
return;
}
Best regards,
Yigit