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

Topic summary

Issue: Merchant wants to remove the “Tags: any” filter from collection pages without deleting product tags, since tags are still needed for the left-side sorting menu. A screenshot highlights the unwanted filter showing raw tags.

Solution provided (Shopify theme CSS):

  • Navigate to Online Store → Theme → Edit code → Assets.
  • Open theme.scss.liquid or theme.scss.css and append: .template-collection .collection-filtering { display: none !important; }
  • This hides the filter on all collection templates without affecting the underlying product tags or the existing sorting menu.

Outcome: The original poster confirmed the fix worked. Discussion resolved.

Summarized with AI on February 28. AI used: gpt-5.

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

1 Like