Dynamic loading for storefront widget
Delayed widget initialization
Sometimes it is necessary to delay widget initialization while the website page finishes the initialization procedures. This is useful when the website is built dynamically using libraries such as ReactJs.
See the example of delayed initialization of different Ecwid widgets below.
Replace all 1003
values with your store ID.
You can additionally control some settings of the main store widget called ProductBrowser:
Number of products on category pages:
views=grid(1,60)
, where number (60 means that Ecwid will load up to 60 products per page).Category opened by default:
defaultCategoryId=172786255
, where you can pass category ID or leave it at0
(which means the store will open default first page).
Dynamic embedding of Ecwid storefront widget
Sometimes you need to dynamically create and destroy the storefront widget on the website. For example, on websites that allow switching pages without actually reloading it.
Replace all 1003
values with your store ID.
You can additionally control some settings of the main store widget called ProductBrowser:
Number of products on category pages:
views=grid(1,60)
, where number (60 means that Ecwid will load up to 60 products per page).Category opened by default:
defaultCategoryId=172786255
, where you can pass category ID or leave it at0
(which means the store will open default first page).
Use window.ecwid_dynamic_widgets
variable to enable dynamic widget creation in Ecwid. See the example above that shows how to create and destroy Ecwid widget through the JavaScript functions.
Last updated
Was this helpful?