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="product-price-right-top"> | |
| {% if product.handle == 'chocolate-chip-cookie' %} | |
| {% for variant in product.variants %} | |
| <h2>{{ variant.title }} - {{ variant.price | money_with_currency }} </h2> | |
| {% endfor %} | |
| {% endif %} | |
| </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
| ageVerify: function() { | |
| function setCookie(cname, cvalue, exdays) { | |
| var d = new Date(); | |
| d.setTime(d.getTime() + (exdays*24*60*60*1000)); | |
| var expires = "expires="+d.toUTCString(); | |
| document.cookie = cname + "=" + cvalue + "; " + expires; | |
| } | |
| function getCookie(cname) { | |
| var name = cname + "="; |
OlderNewer