Wix
Embed your ioZen intake bot on a Wix site using the Custom Embed or Velo by Wix.
Add your ioZen intake bot to Wix using the built-in HTML embed element.
Recommended Embed Type
Widget for site-wide access. Inline via HTML embed for a specific page.
Option 1: Inline (HTML Embed)
- Open the Wix Editor on the page where you want the bot
- Click Add Elements → Embed & Social → Custom Embeds → Embed a Widget
- Click Enter Code and paste:
<div id="iozen-inline"></div>
<script
src="https://app.iozen.ai/embed.js"
data-bot="YOUR_BOT_SLUG"
data-mode="inline"
data-container="iozen-inline"
defer
></script>- Click Update and resize the embed element as needed
- Publish your site
Option 2: Widget (Site-Wide via Velo)
If you have Velo (Wix's developer platform) enabled:
- Go to your site's dashboard → Dev Mode → Turn on Dev Mode
- Open the masterPage.js file
- Add in
onReady:
$w.onReady(function () {
const script = document.createElement('script')
script.src = 'https://app.iozen.ai/embed.js'
script.dataset.bot = 'YOUR_BOT_SLUG'
script.dataset.mode = 'widget'
script.defer = true
document.body.appendChild(script)
})- Publish
Troubleshooting
| Issue | Solution |
|---|---|
| Embed shows as blank | Wix HTML embeds load in an iframe — ensure the embed element has sufficient height (at least 500px) |
| Widget doesn't appear site-wide | Velo's masterPage.js runs on all pages; ensure Dev Mode is enabled and the site is published |
| Resize issues | Set a fixed height on the Wix embed element rather than relying on auto-height |
Need help? Email us at hello@iozen.ai.