Is there a way to hide the announcement bars on specific collections?
Using dawn theme.
A user asks how to hide announcement bars on specific collection pages in Shopify.
Proposed Solution:
hideannounement for collectionscollection-list.liquid that checks if the metafield exists and applies CSS to hide the announcement barTechnical Implementation:
The suggested code snippet uses Liquid templating to check for the metafield and applies display: none !important styling to the .announcement-bar element when the metafield is present.
The discussion appears resolved with a working code-based solution provided.
Is there a way to hide the announcement bars on specific collections?
Using dawn theme.
You can create metafield named hideannounement and assign its value to any number and paste the below code in collection-list.liquid file.
{% if collection.metafields.custom.hideannounement != blank %}
.announcement-bar {display: none !important;}
{% endif %}
Hope it helps…