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
{% assign updated_count = paginate.current_offset | plus: paginate.page_size %} | |
<span class="nomobile">Displaying </span> | |
<span> | |
{{ paginate.current_offset | plus: 1 }} | |
{% if paginate.items < paginate.page_size %} | |
- {{ paginate.items }} of {{ paginate.items }} | |
{% else %} | |
- | |
{% if paginate.items > updated_count %} | |
{{ updated_count }} |
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
{% form 'recover_customer_password' %} | |
<label for="RecoverEmail" class="hidden-label">{{ 'customer.recover_password.email' | t }}</label> | |
<input style="display: none;" type="email" name="email" id="RecoverEmail" class="input-full" value="{{ customer.email }}" autocorrect="off" autocapitalize="off"> | |
<p> | |
<input type="submit" class="btn" value="Reset Password"> | |
</p> | |
{% endform %} |
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
{% if product.tags contains "bis-hidden" %} | |
<p class="out-of-stock">{{ settings.out-of-stock-message }}</p> | |
{% else %} | |
<div class="product-reorder"> | |
<h3>{{ settings.restock-notify-heading }}</h3> | |
<p>{{ settings.restock-notify-message }}</p> | |
<div class="restock-notify-form"> | |
<input type="email" id="notify_email"{% if customer.email != blank %} value="{{ customer.email }}"{% endif %}> | |
<button id="notify_button">{{ settings.notify-me-button }}</button> | |
</div> |
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
#quick-view { | |
display: flex; | |
height: 100%; | |
justify-content: flex-end; | |
flex-wrap: wrap; | |
position: relative; | |
-ms-overflow-style: -ms-autohiding-scrollbar; | |
.qv-product-images { | |
width: 60%; | |
height: auto; |
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
{% assign totes_addon = all_products['custom-tote-new-order-fee'] %} | |
{% assign pouches_addon = all_products['custom-pouches-new-order-fee'] %} | |
{% assign cards_addon = all_products['custom-cards-new-order-fee'] %} | |
{% unless cart.item_count == 0 %} | |
{% assign totes_id = totes_addon.variants.first.id %} | |
{% assign pouches_id = pouches_addon.variants.first.id %} | |
{% assign cards_id = cards_addon.variants.first.id %} |
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
<div class="page-header" style="background-image: url({{ settings.general-header | img_url: 'master' }})"> | |
{{ settings.general-header | img_url: 'master' | img_tag }} | |
<h1>{{ page_title }}</h1> | |
</div> |
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
{% capture email_title %}Thank you for your purchase! {% endcapture %} | |
{% capture email_body %} | |
{% if requires_shipping %} | |
Hi {{ customer.first_name }}, we're getting your order ready to be shipped. We will notify you when it has been sent. | |
{% endif %} | |
{% endcapture %} | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> |
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
<script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/unique-methods/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script><script type="text/javascript">window.dojoRequire(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us19.list-manage.com","uuid":"6c6f6b53043be89a677038ad9","lid":"0c57a234a7","uniqueMethods":true}) })</script> |
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
// This example was used to pull in variant titles and IDs dynamically | |
// on a custom build of the ReCharge customer portal. | |
// | |
// Feel free to send me an email if you have any questions. | |
// | |
// Kelly Vaughn -- The Taproom Agency | |
// [email protected] | |
// 1. Retrieve product ID in any format | |
const productId = <pathToProductId>; |
OlderNewer