Shopify remove product count on products page, particularly in mobile view - Impact theme

Please suggest how to remove product count on collection page, in mobile view.

I am using Impact theme.

1 Like

Hey @UtkarshK1 ,

I don’t have that theme, can you share your store url or preview link if the store is not published. (Share password if page is password protected, or you can remove it)

1 Like

Here is the url: https://atvnearme.fun/collections/on

Is it this you want to remove?

or this?

Hey @UtkarshK1 ,

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.

You can use this to remove the “14 Products” message


Screenshot is for reference only, the correct code to paste is the one shown above.

I reduced some space between the search and the “please use” text so that it looks better :blush:

Hi @UtkarshK1

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.v-stack.gap-4.md\:hidden p {
    display: none;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you, this worked!

1 Like