How to remove product count in filtering Collection page on Dawn theme

How can I remove the product count next to the filtering on product page?

I want to keep the filtering but remove the product count.

Im using Dawn theme v12 I think.

Thanks!

@hesh COuld you please share your store URL?

You can fix this pretty easily by editing the CSS in your theme.

  1. Identify the CSS selector or class to edit. If you don’t already know the name of the CSS selector or class you need to edit, you have to find it. Right-click on your website page choose “inspect,” and then search for the DIV by searching for “40 Products”. The CSS selector or class that matches will highlight the feature on your page. In my theme, it’s “product-count”
  2. Go to the theme in your Shopify store, customize, and select “custom CSS.” Then you can paste the following:

.product-count {

display: none;

}

2 Likes

i solved with other message, thanks

it worked!! thanks :slightly_smiling_face:

This works but is there also a way to remove product count from appearing on the filters too?

1 Like