How can I remove the collection number on the list page?

Solved

How can I remove the collection number on the list page?

YZA1
Tourist
4 1 0

Hello, 

 

I have a technical issue, I can't remove the number of shown in the Collection List page, 

the "1" you can see on the following screenshot. I only want the collection name to be shown. 

 

Is that possible? 

Thank you for helping! 

 

Capture d’écran 2024-03-07 à 11.52.58.png

 

Accepted Solutions (2)
Moeed
Shopify Partner
5073 1352 1631

This is an accepted solution.

Hey @YZA1 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.count-product {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1710220129540.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

View solution in original post

YZA1
Tourist
4 1 0

This is an accepted solution.

Thank you so much!! 

View solution in original post

Replies 8 (8)

prakashVt
Shopify Partner
225 20 34

Hello @YZA1 
If you can share your collection URL then it will be helpful for me to give you a correct answer. 

- Free Customer Dashboard apps that enhanced your customers' experience - VTN Customer Dashboard
- Feel free to Contact for more help (Free Support): prakash.prabhakar@vtnetzwelt.com

Moeed
Shopify Partner
5073 1352 1631

Hey @YZA1 

 

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

webwondersco
Shopify Partner
1146 169 167

@YZA1 Hope you are doing well. 

Please follow the steps mentioned below:

 

- Login to Shopify admin

- Click on Online Store
- Edit your theme Code
- Look for theme.liquid file
- Add the following style at the bottom of the file above </body> tag.

 

body .count-product{
display: none;
}

 

Web Wonders | Shopify Partner | Connect here!
- Question answered? Mark as Accepted Solution, reply helpful? Click Like
- Hire me, if you want to design, re-design, develop a store, or make changes to the pre-built store.
- a small Coffee Tip would be greatly appreciated. :)..! Instagram
YZA1
Tourist
4 1 0

Hello, thank you so much I tried to do it but it has no effect and the 1 is still diplayed.. 

Shay
Shopify Staff
3110 473 650

Hi @YZA1 

 

Can you please share a link to this collection on your store? This way we can see where that number is being generated from and can provide you the right solution. Thanks!

Shay | Social Care @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit the Shopify Help Center or the Shopify Blog

YZA1
Tourist
4 1 0

Sure here it is: https://yza-shop.com/collections

 

Moeed
Shopify Partner
5073 1352 1631

This is an accepted solution.

Hey @YZA1 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.count-product {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1710220129540.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
YZA1
Tourist
4 1 0

This is an accepted solution.

Thank you so much!!