Enfold theme will not allow me to use “WooCommerce Remove Product Sorting” plugin
as the theme is overriding the sort options
I can remove all the sort options using quick css
but I only need to remove a select few
any suggestions
Hi Bob!
Send us a link to your page and let us know which you are wanting to remove and we’ll take a look to see if we can get you some CSS.
Best regards,
Elliott
Hi!
Add this to your custom CSS.
.product-sorting { display: none !important; }
Best regards,
Elliott
That will remove all the sorting options, I need to remove select sorting options
When I was using Replete, Woocommerce assisted me with the following css code to remove the price sort option:
.product-sorting ul.sort-param li:nth-child(3) {
display: none;
}
Now that I have switched to Enfold, I need to remove “popularity”
Hey!
Please add following code to Quick CSS as well
ul.sort-param.sort-param-order ul li:nth-child(5) {
display: none;
}
Cheers!
Yigit
Thank you for all the help – the code worked