If you are using WooCommerce for an online store on your WordPress site, you may want to hide the product dropdown sort by box shown on your Shop page and other product archive pages. Just add this WordPress Code Snippet to your CSS stylesheet in your current WordPress theme in order to hide the sort by drop down in WooCommerce.
/** * Hide WooCommerce Product Sort by dropdown * * @author WPSnacks.com * @link https://www.wpsnacks.com */ .archive .woocommerce-ordering { display: none; }
That’s it, now the product sort by dropdown should be hidden from your product archive pages. Hope this helps, enjoy.
Leave a Reply