Solved

How can I delete the filter "Tags: any" without deleting the tags from my products?

CureUV
Visitor
3 0 1

Hi! If you could please help me I'm looking to delete this filter without it altering the tags on my page since we use them for the sorting menu on the left. I don't want the customers to see this kind of filter because it shows the raw tags (unlike the sorting menu on the left). I'm looking to delete it from all of my collections since it only shows there. Thank you for your time!

REMOVE THIS FILTER.jpg

Kind Regards

Accepted Solution (1)

Developer-G
Shopify Partner
3079 604 857

This is an accepted solution.

Hello @CureUV ,

1. Go to Online Store->Theme->Edit code
2. Asset->theme.scss.liquid Or theme.scss.css-> paste bellow code in bottom of file

.template-collection .collection-filtering {
    display: none !important;
}

 

Thanks

- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on store Hire me.
- Email: guleriathakur43@gmail.com - Skype: navrocks1 ,
- Try GEMPAGES a great page builder
-Advance Search Filter

View solution in original post

Replies 2 (2)

Developer-G
Shopify Partner
3079 604 857

This is an accepted solution.

Hello @CureUV ,

1. Go to Online Store->Theme->Edit code
2. Asset->theme.scss.liquid Or theme.scss.css-> paste bellow code in bottom of file

.template-collection .collection-filtering {
    display: none !important;
}

 

Thanks

- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on store Hire me.
- Email: guleriathakur43@gmail.com - Skype: navrocks1 ,
- Try GEMPAGES a great page builder
-Advance Search Filter
CureUV
Visitor
3 0 1

Thank you very much!