Skip to content

Instantly share code, notes, and snippets.

@makfruit
Last active February 7, 2017 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save makfruit/505436554f63efd01d7c to your computer and use it in GitHub Desktop.
Save makfruit/505436554f63efd01d7c to your computer and use it in GitHub Desktop.
An HTML/JS snippet for Ecwid to display wholesale pricing block (bulk pricing) explanded by default on the product detail pages
<!--
An HTML/JS snippet for Ecwid to display wholesale pricing block (bulk pricing) explanded by default on the product detail pages
Put this code after Ecwid integration code on your site
-->
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<script type="text/javascript">
Ecwid.OnPageLoaded.add(function(page){
if (page.type == "PRODUCT") {
setTimeout(
function () {
jQuery(".ecwid-productBrowser-details-wholesale-qty").first().trigger('click');
},
1000
);
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment