Is there a way to hide the announcement bars on specific collections?
Using dawn theme.
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…