How to exclude a specific tag from tag filter drop down menu in specific collection page?

How to exclude a specific tag from tag filter drop down menu in specific collection page?

arksaivi
Shopify Partner
13 0 0

There are two collections that have separate pages. I want these collections should not be shown in the filter category drop down menu. also when open two collections then don't show other tags in filter dropdown exclude this.PNGexlude cross tags.PNG

Replies 8 (8)

Dan-From-Ryviu
Shopify Partner
11742 2303 2487

Hi @arksaivi 

What's the theme you are using? 

- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

arksaivi
Shopify Partner
13 0 0

Dawn Theme latest version

Dan-From-Ryviu
Shopify Partner
11742 2303 2487

You can try go to Online store >Themes > Edit code > open main-collection-product-grid.liquid file, find this line of code 

 

<option
  value="{{ option.value | escape }}"
  {% if option.value == sort_by %}
    selected="selected"
  {% endif %}
>
  {{ option.name | escape }}
</option>

 

Replace with this code 

{% for tag in collection.all_tags %}
  {% unless tag == 'tag 1' or tag=='tag2' %}      
      <option
        value="{{ option.value | escape }}"
        {% if option.value == sort_by %}
          selected="selected"
        {% endif %}
      >
        {{ option.name | escape }}
      </option>
  {% endunless %}
{% endfor %}    

Please replace tag 1, tag 2 in the code with the tags that you don't want to add and add or tag == "your tags" for each tag

Screenshot 2023-12-25 at 15.45.40.png

- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

arksaivi
Shopify Partner
13 0 0

Thank you ! but No working it should be default on collection page no sort _by condition....  

Dan-From-Ryviu
Shopify Partner
11742 2303 2487

Do you mean from the dropdown menu or collection list page?

- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

arksaivi
Shopify Partner
13 0 0

As given into above screen shot.

shop2222.JPG

As above I want to hide this category from Shop page ( all collection) and 
regal page.JPG

this is single category page where showing category filter option which one I want to hide on this ( Regal thread ) collection page 

arksaivi
Shopify Partner
13 0 0

As shown in screen shot don't want to show Regal thread into  All collection page 
shop2222.JPG

Also I want to hide category option on single category page on collection/Regal-threat
regal page.JPG

arksaivi
Shopify Partner
13 0 0

please help me out