Add a bot to your Wix website using Webchat.
Get your embed code
script
Add to your Wix website
Get your Webchat initialization script
src
Copy the script URL
window.botpress.init({ "botId": "xxxxxxxxxxxxxxxxxxxxxx", "configuration": { "website": {}, "email": {}, "phone": {}, "termsOfService": {}, "privacyPolicy": {}, "variant": "soft", "themeMode": "light", "fontFamily": "inter" }, "clientId": "xxxxxxxxxxxxxxxxxxxxxx" });
Add to your Wix site
<div id="webchat-container" style="position: relative; width: 100%; height: 100%;"> <script src="https://cdn.botpress.cloud/webchat/v3.2/inject.js"></script> <script> window.botpress.on('webchat:initialized', () => { window.botpress.open() }) // Paste your Webchat config snippet here </script> <style> #webchat-container { position: relative; width: 100%; height: 100%; } .bpFab { display: none; } .bpWebchat { position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; width: 100% !important; height: 100% !important; max-height: 100% !important; } </style> </div>
Get your shareable link
Was this page helpful?