Please suggest how to remove product count on collection page, in mobile view.
I am using Impact theme.
Please suggest how to remove product count on collection page, in mobile view.
I am using Impact theme.
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)
Here is the url: https://atvnearme.fun/collections/on
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 ![]()
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!
Thank you, this worked!