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
.slick-items{ | |
display: flex; | |
} | |
.slick-item{height: auto} |
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
// Using add.js queue | |
// Use this with assumption that you will not edit or add product after it has ben added to the cart. | |
$('body').on('click', '.update_desk', function(event) { | |
event.preventDefault(); | |
var thiss = $(this); | |
Shopify.queue = []; | |
//var quantityInCart = parseInt($('#cnt-crt-itm').data("cart-count")); | |
var productHandle = "."+$(this).attr("data-product-handle"); | |
var loader = $(".loader-"+$(this).attr("data-product-handle")); | |
loader.css('display', 'block'); |
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="modal-content"> | |
<span class="close1">×</span> | |
<div class="popup-sub"> | |
<h4>SUBSCRIBE TO REEBOK FITNESS</h4> | |
<p>Keep up to date with the latest news, promotional offers and fitness tips.</p> | |
<p>By subscribing you accept that you have read and agree to our Terms & Conditions and Privacy Policy.</p> | |
{%- form 'customer', id: 'footer-newsletter', class: 'Footer__Newsletter Form' -%} | |
{%- if form.posted_successfully? -%} | |
<p class="Form__Alert Alert Alert--success">You have been subscribed to our newsletter.</p> | |
{%- else -%} |