Quickstart: customize storefront with Ecwid JS API
Last updated
Was this helpful?
Last updated
Was this helpful?
To start working on your storefront customization project, you need a self-hosted JavaScript file connected to an app in your Ecwid store.
In the following guide, you'll start with a new JS file running on your server and end up with an app that runs your script file and initializes Ecwid JS API every time the storefront is opened by a customer.
To make any code changes to the storefront, you need a custom app to be installed in your store. If you don't have a custom application yet, jump into the Building apps section.
To get started with the JS API, you'll need to set up a self-hosted JS file running on your server all the time. This file, for example my_script.js
, will automatically load and run on the storefront every time it's opened.
To set it up, get a static HTTPS link to the file, for example https://myserver.com/js/my_script.js
, and request an app update from the API Support team.
Once the app is updated, your script file automatically loads and runs on the storefront. If the app is installed in multiple Ecwid stores, the script runs in all of their storefronts.
Once you have the JS file running on the storefront, you'll need to initialize Ecwid JS API in it. This way, you can unlock the full potential of storefront customizations and make your code more simplified in a lot of cases.
To do so, simply start your code with the following function:
Now you can utilize all methods described below, along with the configuration settings. Learn all JS API features:
Automate your code execution
Client-side access to store details
Manage your customers
Work with checkout and cart
Redirect customers between pages
Change store behavior with configs