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
| https://storedomain.com/discount/{% coupon_code 'Klaviyo_Coupon_Code' %}?redirect=/cart |
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
| {{ event.extra.checkout_url }} |
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
| <!-- Start Cart Size Discount Section --> | |
| {% if settings.cart_size_enable %} | |
| {% assign cartamount = cart.total_price %} | |
| {% assign threshold = settings.sleepwear_threshold | times:100 %} | |
| {% assign cart-remaining = threshold %} | |
| {% assign cart-remaining = cart-remaining | minus:cartamount %} | |
| {% if cartamount < threshold %} |
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
| /*--- Cart Messages ---*/ | |
| #cart-message { | |
| background-color: {{ settings.cart_promo_background }}; | |
| padding: 15px; | |
| } | |
| .cart-upsell { | |
| padding: 20px; | |
| text-align: center; |
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
| { | |
| "name": "Cart Promotions", | |
| "settings": [ | |
| { | |
| "type": "header", | |
| "content": "Rush Processing" | |
| }, | |
| { | |
| "type": "checkbox", | |
| "id": "cart_rush_enable", |
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
| {% for p in item.properties %} | |
| {% unless p.last == blank %} | |
| {% unless p.first contains '_snapshotId' %} | |
| {% if p.last contains '/uploads/' %} | |
| <div> | |
| {{ p.first }}: <a class="lightbox" href="{{ p.last }}">{{ 'cart.general.uploaded_file' | t }}</a> | |
| </div> | |
| {% else %} | |
| <div class="property-{{ p.first }}"> | |
| {{ p.first }}: {{ p.last }} |
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
| <script> | |
| document.addEventListener('DOMContentLoaded', function() { | |
| var divArt = document.getElementsByClassName('property-Art'); | |
| var text = divArt.innerText; | |
| for (var i = 0; i < divArt.length; i++) { | |
| var text = divArt[i].innerText; | |
| text = text.replace(/\s*\(.*?\)\s*/g, ''); | |
| divArt[i].innerText = text; | |
| }; | |
| }, false); |
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
| {% if template contains 'cart'%} | |
| {% include 'cart-clean' %} | |
| {% endif %} |
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
| <div class="property-{{ p.first }}"> | |
| {{ p.first }}: {{ p.last }} | |
| </div> |
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
| {% if customer %} | |
| {% if customer.tags contains 'admin' %} | |
| <a name="pagecontent" id="pagecontent"></a> | |
| <div class="sixteen columns page clearfix"> | |
| <h1> | |
| {{ page.title }} | |
| </h1> | |
| <div class="feature_divider"></div> | |
| <div> | |
| {% include 'page-multi-column', content: page.content %} |