I’ve haven’t had any luck in removing the product count that shows up in the collection page.
I don’t want to disable the sorting or filtering options, just “hide” the product count via CSS!
Thanks in advance!
I’ve haven’t had any luck in removing the product count that shows up in the collection page.
I don’t want to disable the sorting or filtering options, just “hide” the product count via CSS!
Thanks in advance!
Hello @YUNIK
I see you want to hide this product quantity in the collection page right? https://prnt.sc/oweDvFv-rpeq
You try can add the below code by following these steps:
.facets-container .product-count, .facets-container .mobile-facets__count{
display: none;
}
Kind & Best regards,
GemPages Support Team
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Hi @YUNIK ,
Are you trying to hide the product count on the collection page, or at the filter?
Go to Assets > base.css and paste this at the bottom of the file:
.facets__form .product-count {
display: none !important;
}
Please go to facets.liquid file, find ‘{{ value.count }}’ and remove code:
Hope it helps!
Nailed it!
Thanks a lot.
Hi @YUNIK ,
I am glad that my solution is helpful to you
.