Created
June 2, 2014 09:25
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% 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