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
| table.ecwid-productBrowser-subcategories-mainTable img { | |
| border-style: solid !important; | |
| border: 2px solid #D8D8D8; | |
| } |
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.ecwid-productBrowser-details-leftPanel div { | |
| float: left; | |
| } | |
| div.ecwid-productBrowser-details-thumbnail { | |
| width: 225px; | |
| margin-right: 5px; | |
| } | |
| div.ecwid-productBrowser-details-leftPanel div.ecwid-productBrowser-details-descr, |
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.ecwid-productBrowser-category div.ecwid-productBrowser-price, | |
| div.ecwid-productBrowser-category td.ecwid-productBrowser-productsTable-price { | |
| display: none; | |
| } |
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> | |
| /* | |
| * Hide or show payment methods in Ecwid depending on the order subtotal | |
| * https://gist.github.com/makfruit/7217739 | |
| */ | |
| /*yepnope1.5.x|WTFPL*/ | |
| (function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}functi |
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
| /* | |
| * Hide or show payment methods in Ecwid depending on the delivery methods selected | |
| */ | |
| /*yepnope1.5.x|WTFPL*/ | |
| (function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i( |
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
| <!-- An HTML/Javascript code snippet for Ecwid to show a simple promo message popup on the cart page for orders less than the defined subtotal --> | |
| <script> | |
| if (typeof(Ecwid) == 'object') { | |
| Ecwid.OnAPILoaded.add(function() { | |
| var promoMessage = "Orders $99 and up ship free!"; | |
| var minSubtotal = 99; | |
| var checkSubtotal = function(order) { | |
| if (order) { | |
| var subtotal = order.total - order.shipping; |
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
| <!-- | |
| An HTML/JS snippet for Ecwid to add a size chart link to the product details panel | |
| https://gist.github.com/makfruit/6571884/ | |
| --> | |
| <script src="http://code.jquery.com/jquery.min.js"></script> | |
| <script> | |
| Ecwid.OnPageLoaded.add(function(page) { | |
| if (page.type == 'PRODUCT') { | |
| if (jQuery("#size_chart_link").length == 0) { | |
| jQuery("<a />", { |
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
| <!-- An HTML/Javascript code snippet for Ecwid to move the product description to the right panel --> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| Ecwid.OnPageLoaded.add(function(page) { | |
| if (page.type == "PRODUCT" && !descrMoved) { | |
| jQuery("div.ecwid-productBrowser-details-descr").insertBefore("div.ecwid-productBrowser-details-rightPanel div.ecwid-productBrowser-sku"); | |
| var descrMoved = true; | |
| } | |
| }); |
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" src="http://mysite.com/path/to/EcwidYotpoWidgets.js"></script> | |
| <script> | |
| EcwidYotpoWidgets.load({ | |
| yotpoAppKey: 'my_yotpo_key' // Place your Yotpo API key here | |
| }); |
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
| <!-- An HTML/Javascript code snippet for Ecwid to redirect continue shopping buttons to a custom page --> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
| <script> | |
| if (typeof(Ecwid) == 'object') { | |
| Ecwid.OnAPILoaded.add(function() { | |
| Ecwid.OnPageLoaded.add(function(page) { | |
| jQuery('.ecwid-pager').removeClass('ecwid-pager-hasTopSeparator').insertAfter('div.ecwid-results-topPanel-itemsCountLabel'); | |
| }); | |
| }); | |
| } |