Skip to content

Instantly share code, notes, and snippets.

@guilhermechapiewski
Created April 3, 2025 02:46
Show Gist options
  • Save guilhermechapiewski/fb515fdb31113942e4d6464e026b6902 to your computer and use it in GitHub Desktop.
Save guilhermechapiewski/fb515fdb31113942e4d6464e026b6902 to your computer and use it in GitHub Desktop.
Ecwid "hello world"
Ecwid.OnAPILoaded.add(function() {
Ecwid.OnPageLoaded.add(function(page) {
if (page.type == "PRODUCT") {
console.log(
`
Page loaded!
Ecwid store ID is: ${Ecwid.getOwnerId()}
Product ID is: ${page.productId}
`
)
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment