If you are using WooCommerce for an online store on your WordPress site, you may want to hide the result count “showing the single result” or however many products you display 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 product result count display on product archive pages in WooCommerce.
/** * Hide WooCommerce Product Result Count Display * * @author WPSnacks.com * @link https://www.wpsnacks.com */ .archive .woocommerce-result-count { display: none; }
That’s it, now the product result count display should be hidden from your product archive pages. Hope this helps, enjoy.
Leave a Reply