<aside> 💡 The Sales Assist Widget can easily be integrated into any web based application. We also have easy installation instructions for Wordpress, Wix and Shopify!

</aside>

Send us an email at [email protected] if you can’t find what you are looking for.

Installing the Widget

Web Applications (Single Page etc.)

NextJS Applications

Wordpress Websites (Method 1 - via custom plugin)

Wordpress Websites (Method 2 - via WPCode)

Wix Websites

Shopify Websites

Q: What if I want to automatically open the widget on load to the expanded form?

A: change the embedded script to below and replace the "<widgetId>" to your id given in the dashboard widget settings page :

<script defer type="text/javascript">function initWebWidgetConfig() {if (window) {window.bakstageAppId = "<widgetId>";window.bakstageSettings = { widgetId: "<widgetId>" };}} initWebWidgetConfig(); function openWidgetWithDelay() {setTimeout(function() {if (window.bakstage && typeof window.bakstage.openWidget === 'function') {window.bakstage.openWidget();} else {setTimeout(openWidgetWithDelay, 100);}}, 2000);} </script> <script defer type="text/javascript" src="<https://app.bakstage.me/inject/web-widget-bakstage.js>" onload="openWidgetWithDelay()"></script>