View gist:03b0ce72748423ac30f9d4582f318af9
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="cart-block__attributes flex items-center space-x-2 justify-center md:justify-end"> | |
<input id="Cart-Attribute-Birthday" form="cart" type="date" name="attributes[Birthday]" value=""> | |
<label for="Cart-Attribute-Birthday" class="text-primary-text p-0 text-sm font-body font-weight-body normal-case tracking-normal">Birthday</label> | |
</div> |
View product-details-sku.liquid
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 current_variant = product.selected_or_first_available_variant %} | |
<span class="variant-sku">{{ current_variant.sku }}</span> |
View district-cart-attributes.liquid
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="cart-block__attributes flex items-center space-x-2 justify-center md:justify-end"> | |
<input form="cart" type="hidden" name="attributes[Gift]" value="No"> | |
<input id="Cart-Attribute-Gift" form="cart" type="checkbox" name="attributes[Gift]" value="Yes"{% if cart.attributes["Gift"] == "Yes" %} checked{% endif %}> | |
<label for="Cart-Attribute-Gift" class="text-primary-text p-0 text-sm font-body font-weight-body normal-case tracking-normal">Is this a gift?</label> | |
</div> |
View snippet.css
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
.collection aside nav.tags ul { | |
max-height: 300px; | |
overflow: scroll; | |
} | |
.collection aside nav.tags li { | |
display: block; | |
} | |
.collection aside nav.tags li a { | |
background: transparent; | |
box-shadow: none; |
View seo-hacks.liquid
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
Change to make in theme.liquid | |
It adds a canonical tag for tag-filtered pages, back to the base collection/blog page. | |
*** Find this is the standard canonical tag code: *** | |
<link rel="canonical" href="{{ canonical_url }}" /> | |
*** Completely replace it with this: *** |
View external-links-in-new-tab.js
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
var links = document.links; | |
for (var i = 0, linksLength = links.length; i < linksLength; i++) { | |
if (links[i].hostname != window.location.hostname) { | |
links[i].target = '_blank'; | |
} | |
} |
View Stylefile.yml
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
--- | |
version: 1.0 | |
domains: | |
- www.shopify.com | |
url_patterns: | |
- www.shopify.com/* | |
timestamp: '2018-08-01T18:54:29Z' | |
id: vytH | |
redirect_url: https://www.shopify.com/ | |
shared_via: StyleURL - (https://styleurl.app) import and export CSS changes from Chrome |
View Stylefile.yml
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
--- | |
version: 1.0 | |
domains: | |
- www.shopify.com | |
url_patterns: | |
- www.shopify.com/* | |
timestamp: '2018-08-01T18:53:00Z' | |
id: q7k_ | |
redirect_url: https://www.shopify.com/ | |
shared_via: StyleURL - (https://styleurl.app) import and export CSS changes from Chrome |
View Stylefile.yml
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
--- | |
version: 1.0 | |
domains: | |
- district-theme-demo.myshopify.com | |
url_patterns: | |
- district-theme-demo.myshopify.com/* | |
timestamp: '2018-08-01T18:42:49Z' | |
id: tbc9 | |
redirect_url: https://district-theme-demo.myshopify.com/ | |
shared_via: StyleURL - (https://styleurl.app) import and export CSS changes from Chrome |
View instagram-patch.liquid
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"> | |
window.addEventListener('DOMContentLoaded', function() { | |
(function ($) { | |
var $instagramSection = $('.instagram-collection'); | |
var loadImages = function($container, data, imageCount){ | |
for (var i = 0; i < imageCount; i++) { | |
var images = data.data[i].images, | |
// Thumbnail | |
thumbnail = images.thumbnail.url, | |
thumbnailWidth = images.thumbnail.width, |
NewerOlder