ioZen Docs

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.

Widget for site-wide access. Inline via HTML embed for a specific page.

Option 1: Inline (HTML Embed)

  1. Open the Wix Editor on the page where you want the bot
  2. Click Add Elements → Embed & Social → Custom Embeds → Embed a Widget
  3. 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>
  1. Click Update and resize the embed element as needed
  2. Publish your site

Option 2: Widget (Site-Wide via Velo)

If you have Velo (Wix's developer platform) enabled:

  1. Go to your site's dashboard → Dev Mode → Turn on Dev Mode
  2. Open the masterPage.js file
  3. 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)
})
  1. Publish

Troubleshooting

IssueSolution
Embed shows as blankWix HTML embeds load in an iframe — ensure the embed element has sufficient height (at least 500px)
Widget doesn't appear site-wideVelo's masterPage.js runs on all pages; ensure Dev Mode is enabled and the site is published
Resize issuesSet a fixed height on the Wix embed element rather than relying on auto-height

Need help? Email us at hello@iozen.ai.

On this page