Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makfruit/8f55e57945de9089a014 to your computer and use it in GitHub Desktop.
Save makfruit/8f55e57945de9089a014 to your computer and use it in GitHub Desktop.
An HTML/JS snippet for Ecwid to move category description and subcategories under the subcategories/products listing
<!--
An HTML/JS snippet for Ecwid to move category description and subcategories under the subcategories/products listing
https://gist.github.com/makfruit/8f55e57945de9089a014
Put this code after Ecwid integration code on your site
-->
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
Ecwid.OnPageLoaded.add(function(page) {
if (page.type == 'CATEGORY') {
jQuery(".ecwid-productBrowser-categoryDescription, .ecwid-productBrowser-subcategories-mainTable").insertAfter(".ecwid-productBrowser-category");
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment