Build user settings page for Ecwid admin
When users open your Native app, Ecwid opens your settings page inside an iframe. The app must go through authentication and initialization to show your settings page.
Initialize the app
The EcwidApp.init()
method is required. Call it once when the iframeUrl is opened. If it's not called, then Ecwid won't show the app. Your iframeUrl will load on a separate page but won't work inside Ecwid admin.
Add your app client_id as app_id value. Leave autoloadedflag and autoheight fields with true. For most applications, it will be enough.
Read more about init()
function and other functions available with Native app JS SDK.
Show page to users
Now the app can show its settings page to users. Add EcwidApp.init()
and JS file from Native app SDK in the <head>
. Add JS and CSS files for CSS Framework to <head>
and <body>
.
We have an HTML template with up-to-date versions of all required files. Use it to get started:
Use Ecwid CSS Framework
Native apps become a part of an Ecwid admin, so they must look accordingly. Our CSS Framework has a large collection of ready-to-use UI elements and blocks. Use it to create an interface matching Ecwid admin faster and easier.
To access CSS Framework elements inside the Native app, add the required CSS and JS files to the page:
<head>
:
https://d35z3p2poghz10.cloudfront.net/ecwid-sdk/css/1.3.19/ecwid-app-ui.css
<body>
:
https://d35z3p2poghz10.cloudfront.net/ecwid-sdk/css/1.3.19/ecwid-app-ui.min.js
Code example:
Last updated
Was this helpful?