Is there a way to hide the announcement bars on specific collections

Is there a way to hide the announcement bars on specific collections?

Using dawn theme.

Hi @HCoWoodworks

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…