Skip to content

Instantly share code, notes, and snippets.

@msmithstubbs
Created November 9, 2012 06:57
Show Gist options
  • Save msmithstubbs/4044135 to your computer and use it in GitHub Desktop.
Save msmithstubbs/4044135 to your computer and use it in GitHub Desktop.
Hide the Notify Me button for a collection
{% assign in_clearance = false %}
{% for collection in product.collections %}
{% if collection.title == 'Clearance' %}
{% assign in_clearance = true %}
{% endif %}
{% endfor %}
{% if in_clearance %}
<style>
#BIS_trigger {
display: none !important;
}
</style>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment