Last active
September 14, 2016 05:59
-
-
Save unofficialshopify/39126f8f4e81ac0cb954061bcc735428 to your computer and use it in GitHub Desktop.
In this tutorial we are going to add a notify/reminder form on product page when product is unavailable or sold out so customer just email to website owner for remind the customer that product is available now.
This file contains 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
{% unless product.available %} | |
<div id="sold-out"> | |
{% form 'contact' %} | |
{% if form.posted_successfully? %} | |
<p class="accent-text">Thanks! We will notify you when this product becomes available!</p> | |
{% else %} | |
<p>Click <a id="notify-me" href="#"><strong>here</strong></a> to be notified by email when {{ product.title }} becomes available.</p> | |
{% endif %} | |
{% if form.errors %} | |
<div class="error feedback accent-text"> | |
<p>Please provide a valid email address.</p> | |
</div> | |
{% endif %} | |
{% unless form.posted_successfully? %} | |
<div id="notify-me-wrapper" class="clearfix" style="display:none"> | |
{% if customer %} | |
<input type="hidden" name="contact[email]" value="{{ customer.email }}" /> | |
{% else %} | |
<input style="float:left; width:180px;" required="required" type="email" name="contact[email]" placeholder="[email protected]" class="styled-input{% if form.errors contains 'email' %} error{% endif %}" value="{{ contact.fields.email }}" /> | |
{% endif %} | |
<input type="hidden" name="contact[body]" value="Please notify me when {{ product.title | escape }} becomes available." /> | |
<input style="float:left; margin-left:5px;" class="btn styled-submit" type="submit" value="Send" /> | |
</div> | |
{% endunless %} | |
<script> | |
jQuery('#notify-me').click(function() { | |
{% if customer %} | |
jQuery('#sold-out form').submit(); | |
{% else %} | |
jQuery('#notify-me-wrapper').fadeIn(); | |
{% endif %} | |
return false; | |
} ); | |
</script> | |
{% endform %} | |
</div> | |
{% endunless %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment