Skip to content

Instantly share code, notes, and snippets.

@msmithstubbs
Created June 2, 2014 09:25
Show Gist options
  • Select an option

  • Save msmithstubbs/eef0f991e095021a3316 to your computer and use it in GitHub Desktop.

Select an option

Save msmithstubbs/eef0f991e095021a3316 to your computer and use it in GitHub Desktop.
Add a Notify Me button to the product page when at least one variant is sold out.
{% assign show_button = false %}
{% for variant in product.variants %}
{% if variant.available == false %}
{% assign show_button = true %}
{% endif %}
{% endfor %}
{% if show_button %}
<img src="{{ 'notify_me.png' | asset_url }}" id="BIS_trigger">
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment