Dear support guru’s,
In our webshop, there is a menu to sort the products by name, price, popularity and so on. Is it possible to cange or deactivate some of these options?
Thank you in advance!
Kindest regards,
Pim and Gonneke
Hey eric_peeters!
You can hide them using CSS:
.woocommerce.widget_price_filter {
display: none;
}
.woocommerce_layered_nav-2 {
display: none;
}
Please give us a link to the page so that we can give you a proper css solution.
Cheers!
Ismael
Hi Ismael,
The page: https://www.peetersduurzaam.nl/webshop-2/
At the top of the webshop page you can see “Sorteer op” which means “Sort by”, we would like to delete the option called “Standaard bestelling” which means “Standard order”.
It would be most ideal if the default sorting would be “Price (low-high)”
Thanks!
Pim
Hey!
These are determined by WooCommerce and not the theme. So you could use a function like this to add your own sort option: https://gist.github.com/mikejolley/1622644
Or you can check with WooCommerce support on how to easily re-name a sorting option.
Regards,
Devin