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="product_just_stars" class="big"></div> | |
<script type="text/javascript"> | |
var sa_product = '{{ product.handle }}'; function saLoadScript(src) | |
{ var js = window.document.createElement("script"); js.src = src; js.type = "text/javascript"; | |
document.getElementsByTagName("head")[0].appendChild(js); } | |
saLoadScript('//www.shopperapproved.com/product/XXXXX/'+sa_product+'.js'); | |
</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
<h3>Product Reviews from Verified Customers</h3> | |
<script type="text/javascript"> | |
var sa_products_count = 10; var sa_date_format = 'F j, Y'; var sa_product = '{{ product.handle }}'; | |
function saLoadScript(src) { var js = window.document.createElement("script"); js.src = src; | |
js.type = "text/javascript"; document.getElementsByTagName("head")[0].appendChild(js); } | |
saLoadScript('//www.shopperapproved.com/product/XXXXX/'+sa_product+'.js'); | |
</script> | |
<div id="shopper_review_page"><div id="review_header"></div> | |
<div id="product_page"></div> | |
<div id="review_image"><a href="http://www.shopperapproved.com/reviews/YourStoreURL.com/" |
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
<a href="http://www.shopperapproved.com/reviews/yourstoreURL.com/" class="shopperlink"> | |
<img src="//www.shopperapproved.com/seals/XXXXX-r.gif" style="border: 0" alt="Customer Reviews" oncontextmenu="var d = new Date(); | |
alert('Copying Prohibited by Law - This image and all included logos are copyrighted by Shopper Approved \251 '+d.getFullYear()+'.'); | |
return false;" /> | |
</a> | |
<script type="text/javascript">(function() { var js = window.document.createElement("script"); | |
js.src = '//www.shopperapproved.com/seals/certificate.js'; js.type = "text/javascript"; | |
document.getElementsByTagName("head")[0].appendChild(js); })();</script> | |
{% unless template contains 'product' or handle contains 'store-reviews' %} |
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="star_container {{ product.handle }}"></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
<!---------Shopper Approved-------> | |
<script type="text/javascript"> | |
function saLoadScript(src) { var js = window.document.createElement('script'); | |
js.src = src; js.type = 'text/javascript'; document.getElementsByTagName("head")[0].appendChild(js); } | |
saLoadScript('//www.shopperapproved.com/widgets/group2.0/XXXXX.js'); | |
</script> | |
<style> | |
.group-stars .ind_cnt { | |
font-size: 12px; | |
display: initial; |
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 collection in collections %} |
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 link in linklists[page.handle].links %} | |
{% assign collection = link.object %} |
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
{% if customer and customer.tags contains 'admin' %} | |
<div class="admin-edit"> | |
{% if template contains 'collection' %} | |
<p><a href="/admin/collections/{{collection.id}}" target="_blank">Edit Collection</a></p> | |
{% endif %} | |
{% if template contains 'product' %} | |
<p><a href="/admin/products/{{product.id}}" target="_blank">Edit Product</a></p> | |
{% endif %} | |
{% if template contains 'page' %} | |
<p><a href="/admin/pages/{{page.id}}" target="_blank">Edit Page</a><p> |
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
<!-- Start RUSH Order Section --> | |
{% if settings.cart_rush_enable %} | |
{% assign rushOrder = 0 %} | |
{% for item in cart.items %} | |
{% if item.product.title contains 'Rush Order' %} | |
{% assign rushOrder = rushOrder | plus:1 %} | |
{% endif %} | |
{% endfor %} | |
{% if rushOrder == 0 %} |
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
{% include 'cart-message' %} |