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" 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 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 linklist = linklists['part-picker'] %} | |
<form> | |
<table cellspacing="0" cellpadding="0" border="1"> | |
<tbody> | |
<tr id="cart-headlines"> | |
<td class="cart-thumb"> </td> | |
<td class="cart-title">Product Title</td> | |
<td class="cart-unitprice">Price</td> | |
<td class="cart-quantity">Quantity</td> |
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" 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 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
.artwork-collection .product{ margin-bottom:120px;} | |
.artwork-collection .product-image td, .artwork-collection .product{width:286px; height: 400px;} | |
.artwork-collection .product-image img{width:286px;} | |
.artwork-collection .product-overlay, .artwork-collection .product-overlay a:hover, .artwork-collection .product-overlay a, .artwork-collection .product-image{width:286px; height:400px;} | |
.artwork-collection .product-details{padding-top:418px;} |
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
{% comment %} | |
First, create a smart collection that add all products in your shop into it | |
(ex: price is greater than 0), and call it "All". | |
{% endcomment %} | |
<form> | |
<table cellspacing="0" cellpadding="0" border="1"> | |
<tbody> | |
<tr id="cart-headlines"> | |
<td class="cart-thumb"> </td> |
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
{% for product in collection.products %} | |
<div class="product {% cycle '', '', '','last' %}"> | |
<div class="product-image"> | |
<a href="{{ product.url | within: collection }}" alt="{{ product.title}}"> | |
<img src="{{ product.featured_image | product_img_url: 'large' }}" alt="{{ product.title }}" /> | |
</a> | |
</div> |
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" 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 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 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 linklist = linklists['order-form'] %} | |
<form> | |
<table cellspacing="0" cellpadding="0" border="1"> | |
<tbody> | |
<tr id="cart-headlines"> | |
<td class="cart-thumb"> </td> | |
<td class="cart-title">Product Title</td> | |
<td class="cart-unitprice">Price</td> | |
<td class="cart-quantity">Quantity</td> | |
</tr> |
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 id="search" class="right"> | |
<form action="/search" method="get" id="search"> | |
<input type="search" id="searchtext" name="q" class="filled" /> | |
</form> | |
</div> |
NewerOlder