want to hide product tags showing up on collections page

Solved

want to hide product tags showing up on collections page

sharathkatpally
Shopify Partner
4 0 0

Hi I want to hide product tags from showing up on the collections page. In the image you see the 30% Chetak_IL I want to hide them. My theme is classic. Thanks for your help

sharathkatpally_0-1737170787736.png

 

 

 

Accepted Solution (1)
EstherBui
Trailblazer
276 39 44

This is an accepted solution.

You are in the theme.liquid file
- That code add in the file theme.css.liquid

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

View solution in original post

Replies 7 (7)

EstherBui
Trailblazer
276 39 44

Hi, can you share store URL? and you want to hide this, right? https://prnt.sc/3cYMuldqs-RF

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

sharathkatpally
Shopify Partner
4 0 0

https://www.vdeliverfree.com/collections/on-sale  I want to hide all the tags that are showing up on the collection page across all the site not just in this link. 

EstherBui
Trailblazer
276 39 44

Hi Sharathkatpally

- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.scss.liquid and add this code at the end of the file

 

nav.tags {
    display: none !important;
}

 


Result: 

EstherBui_0-1737210251741.png

 



Best,

Esther

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

sharathkatpally
Shopify Partner
4 0 0

Thank you for replying. I pasted the code as you suggested. But I still the same  tags https://www.vdeliverfree.com/collections/on-sale

 

sharathkatpally_0-1737217369092.png

 

EstherBui
Trailblazer
276 39 44

This is an accepted solution.

You are in the theme.liquid file
- That code add in the file theme.css.liquid

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

sharathkatpally
Shopify Partner
4 0 0

Thank you so much it worked. 

https://www.vdeliverfree.com/collections/on-sale

 

I added below code in the theme.scss.liquid at the last line.

nav.tags { display: none !important; }

EstherBui
Trailblazer
276 39 44

nice sir

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!