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
{ | |
"current": { | |
"color_account_bg": "#f3f3f3", | |
"color_account_text": "#656565", | |
"color_header_bg": "#ffffff", | |
"color_header_text": "#656565", | |
"color_body_bg": "#ffffff", | |
"color_body_text": "#656565", | |
"color_primary": "#585e71", | |
"color_splash": "#3d5e8c", |
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 pre_order = false -%} | |
{%- assign pre_order_tag = false -%} | |
{% if product.tags contains 'pre-order' %} | |
{%- assign pre_order = true -%} | |
{%- assign pre_order_tag = true -%} | |
{% endif %} | |
{%- assign on_sale = false -%} | |
{%- if product.compare_at_price > product.price -%} | |
{%- assign on_sale = true -%} |
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 Story override code removes background 1x1 image -- */ | |
.template-product .lazy-image {background-image: none !important;} | |
/* - end - */ |
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> | |
// (c) Copyright 2016 Caroline Schnapp. All Rights Reserved. Contact: [email protected] | |
// See https://docs.shopify.com/themes/customization/navigation/link-product-options-in-menus | |
var Shopify = Shopify || {}; | |
Shopify.optionsMap = {}; | |
Shopify.updateOptionsInSelector = function(selectorIndex) { | |
switch (selectorIndex) { | |
case 0: | |
var key = 'root'; |
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
<!-- /templates/page.wide.liquid --> | |
{% section 'page-images' %} | |
<div class="wrapper page-margin"> | |
<div class="grid"> | |
<div class="grid__item one-whole"> | |
<h1 class="text-center h2 templateTitle" style="display:none;">{{ page.title }}</h1> | |
<div class="rte"> | |
{{ page.content }} |
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
<!-- /templates/page.liquid --> | |
{% section 'page-images' %} | |
<div class="wrapper page-margin"> | |
<div class="grid"> | |
<div class="grid__item large--two-thirds push--large--one-sixth"> | |
<h1 class="text-center h2 templateTitle" style="display:none;">{{ page.title }}</h1> | |
<div class="rte"> | |
{{ page.content }} |
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
/*============================================================================ | |
#Pagination (Including Shopify Product Reviews) | |
==============================================================================*/ | |
.pagination { | |
margin-bottom: 1em; | |
} | |
/*================ Custom Pagination ================*/ | |
.pagination-custom, .sky-pilot-pagination { | |
display: inline-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
<script id="JsQty" type="text/template"> | |
{% raw %} | |
<div class="js-qty | |
<button {{readOnly}} type="button" class="js-qty__adjust js-qty__adjust--minus" data-id="{{id}}" data-qty="{{itemMinus}}">−</button> | |
<input {{ bold_qty_attr }} type="text" class="js-qty__num QuantityInput" value="{{itemQty}}" min="1" data-id="{{id}}" aria-label="quantity" pattern="[0-9]*" name="{{inputName}}" id="{{inputId}}" data-submit="{{submit}}"> | |
<button {{readOnly}} type="button" class="js-qty__adjust js-qty__adjust--plus" data-id="{{id}}" data-qty="{{itemAdd}}">+</button> | |
</div> | |
{% endraw %} | |
</script> | |
<script id="JsQty--cart" type="text/template"> |
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
{ | |
"current": { | |
"color_account_bg": "#dddddd", | |
"color_account_text": "#656565", | |
"color_header_bg": "#ffffff", | |
"color_header_text": "#2e3438", | |
"color_body_bg": "#ffffff", | |
"color_body_text": "#656565", | |
"color_primary": "#359ac8", | |
"color_splash": "#f4a482", |
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 instagram_grid_width_large = 'large--one-sixth' %} | |
{% assign instagram_grid_width_medium = 'medium--one-third' %} | |
{% assign instagram_grid_width_small = 'small--one-half' %} | |
{% case section.settings.instagram_grid_setting_large %} | |
{% when 2 %} | |
{% assign instagram_grid_width_large = 'large--one-half' %} | |
{% when 3 %} | |
{% assign instagram_grid_width_large = 'large--one-third' %} | |
{% when 4 %} |