Skip to content

Instantly share code, notes, and snippets.

@riq363
Created May 21, 2015 14:56
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 riq363/6df01dd90f5dbf839756 to your computer and use it in GitHub Desktop.
Save riq363/6df01dd90f5dbf839756 to your computer and use it in GitHub Desktop.
Adds a product on store load
<script>
var added;
Ecwid.OnPageLoaded.add(function(Cart){
var product = {
id: 50559268,
quantity: 1,
options: {
type: "EU",
color: "Black"
}
};
if (added !== true) {
Ecwid.Cart.addProduct(product);
added = true;
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment