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
{% layout settings.customer_layout %} | |
<h2>Account Details and Order History</h2> | |
<div class="clearfix"> | |
<div class="account-user left"> | |
</div> | |
<div class="account-table right"> | |
</div> | |
</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
module.exports = function(grunt) { | |
grunt.registerTask('speak', function (){ | |
console.log("I'm speaking"); | |
}); | |
}; |
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
_site/ | |
.sass-cache/ | |
node_modules/ | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe |
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
javascript:(function(){hours=prompt("please enter the number of hours", 1); shop_url= $("#" + $.find('label').filter(function(element, index, array){return $("#" + element.id).siblings()[0] && $("#" + element.id).siblings()[0].value && $("#" + element.id).siblings()[0].value.indexOf("myshopify.com") != -1})[0].id).siblings()[0].value; ticket_id = $('#wrapper')[0].className.split("/")[2]; url = "https://shopify-mods.myshopify.com/cart/295536989:" + hours + "?note=" + shop_url + "," + ticket_id; prompt("Copy to clipboard: Ctrl+C, Enter",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
<h1>Heading 1</h1> | |
<h2>Heading 2</h2> | |
<h3>Heading 3</h3> | |
<h4>Heading 4</h4> | |
<h5>Heading 5</h5> | |
<h6>Heading 6</h6> | |
<blockquote> | |
<p>Blockquote</p> | |
</blockquote> | |
<p><strong>Bold text</strong></p> |
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> | |
<strong>SEARCH BY TYPE: </strong> | |
<select id="product_type"> | |
<option></option> | |
{% for product_type in shop.types %} | |
<option>{{ product_type }}</option> | |
{% endfor %} | |
</select> | |
</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
<script type="text/javascript" charset="utf-8"> | |
//<![CDATA[ | |
// Including jQuery conditionnally. | |
if (typeof jQuery === 'undefined') { | |
document.write({{ "http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" | script_tag | json }}); | |
document.write('<script type="text/javascript">jQuery.noConflict();<\/script>'); | |
} | |
//]]> | |
</script> |
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 id="coll-product-list"> | |
{% capture current_handle %}{{ product.handle }}{% endcapture %} | |
{% capture current_type %}{{ product.type }}{% endcapture %} | |
{% assign how_many_we_got = 0 %} | |
{% paginate collections.all-products.products by 100 %} | |
{% for product in collections.all-products.products %} | |
{% unless product.handle == current_handle %} | |
{% if product.type == current_type and how_many_we_got < 4 %} | |
{% assign how_many_we_got = how_many_we_got | plus: 1 %} |
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="variant-radios"> | |
{% for variant in product.variants %} | |
<input type="radio" name="id" value="{{ variant.id }}" data-price="{{ variant.price }}" id="{{ variant.id }}"/> | |
<label for="{{ variant.id }}">{{ variant.title }}</label> | |
{% endfor %} | |
</div> | |
<script> | |
jQuery(".variant-radios input").click(function(){ | |
var price= jQuery(this).attr('data-price'); | |
console.log(price); |
NewerOlder