Wix Chatbot Builder
The Conferbot Wix app uses Wix's embedded script component to render the widget on every page of your site. Install from the App Market, paste your Chatbot ID, save - done.
To build a Wix chatbot with Conferbot, sign up free, design your flow in the no-code visual builder, connect your Wix account, and publish - typically live in a few minutes with no coding. The free plan needs no credit card, and the same bot can also run on your website and other messaging channels.
Wix Chatbot Features
Everything you need to build powerful automated conversations
Install via the Wix installer flow (OAuth)
Embedded script rendered on every page automatically
No code, no HTML embeds, no iframe hacks
Paste the bare ID, full embed snippet, or dashboard URL - auto-extracted
One-click demo bot that works without an account
Floating bubble or popup embed types
Async loader - no render blocking
Appearance managed centrally in the Conferbot dashboard
AI answers plus live agent handover
What Can You Build?
Get Started in 5 Simple Steps
Follow this guide to connect your Wix chatbot
Add the Conferbot app to your Wix site and approve the install
Open the app settings page
Paste your Chatbot ID (or click the one-click demo bot)
Save - the app pushes the embed to every page of your site
Publish your site and the chat bubble is live!
Introduction
Wix is one of the largest website building platforms in the world, with over 200 million registered users across sites for local businesses, creators, restaurants, agencies, and online stores. The appeal is obvious: you build a professional site without writing code. Your chatbot should work the same way.
The Conferbot Wix app brings AI-powered chat to any Wix site with the same no-code philosophy. Install the app, paste one Chatbot ID, save - and the chat bubble is live on every page of your site. No HTML embeds, no iframe hacks, no developer needed.
Under the hood the app uses Wix's official Embedded Script component, which means the widget is delivered the way Wix intends third-party scripts to be delivered: registered once, rendered on every page, and resilient to site edits and re-publishing. The bot itself is powered by the same visual builder and AI engine behind every Conferbot channel - build a bot once and deploy it to your Wix site, your other websites, WhatsApp, and Messenger from one dashboard.
This guide covers how the app works, real installation steps, configuration, what data the app passes to the bot, Wix-specific use cases, theming, AI and live agent workflows, performance, and how the app compares to generic live chat apps in the Wix App Market in 2026.
New to chatbots on Wix? Our Wix chatbot guide walks through strategy and examples, and the free website chatbot guide explains what you can do on the free plan. Browse the template library for ready-made flows you can publish today.
Source code & documentation: conferbot-wix on GitHub | Developer guide
How the Wix App Works
The Conferbot Wix app is a thin, transparent wrapper around the official Conferbot web widget. It exists to do one thing well: get your Chatbot ID onto every page of your Wix site without you touching code.
The Install and Runtime Flow
- You add the app to your Wix site. Wix runs its standard installer flow (OAuth), and the app receives a secure token for your specific site instance
- You open the app settings page and paste your Chatbot ID
- On save, the app pushes the bot ID and embed type into a Wix Embedded Script via Wix's official scripts API. Wix then renders that script on every page of your site (placement: body end, all pages)
- On each page load, the script boots the standard Conferbot loader from the CDN and mounts the widget
What Actually Loads on Your Site
The embedded script loads the official widget asynchronously and initializes it:
<script src="https://cdn.conferbot.com/dist/v1/widget.min.js" async></script>
window.ConferbotWidget("YOUR_BOT_ID", "live_chat", { customData: { platform: "wix" } })
This is exactly the same widget contract used on every Conferbot integration - WordPress, Shopify, PrestaShop, and the plain website embed. The Chatbot ID is the only credential. There is no API key, no workspace ID, and no secret in your site's pages - the widget resolves everything server-side from the bot ID.
Try It Before You Sign Up
The settings page offers a one-click demo bot (691c970890527a0468f9b2c9) that works without a Conferbot account. Install the app, click the demo bot, save, and see a real AI chat working on your live Wix site before you create an account. When you are ready, build your own bot at app.conferbot.com and swap the ID.
Why the Embedded Script Approach Matters
There are several ways to get a script onto a Wix site, and not all of them age well. The Conferbot app deliberately uses Wix's Embedded Script component - the platform's sanctioned mechanism for third-party scripts - rather than fragile workarounds.
Compared to Manual Alternatives on Wix
- HTML iframe element: Pasting chat code into an HTML embed element renders the widget inside a sandboxed iframe box on one page. It cannot float over your content, does not follow visitors across pages, and has to be copied onto every page manually
- Custom code injection: Wix's custom code feature works but requires a Premium plan, offers no settings UI, and leaves you hand-editing JavaScript whenever your bot ID or embed type changes
- Embedded Script via the app (Conferbot's approach): Registered once by the app, rendered by Wix on every page at body end, updated centrally when you change settings, and removed cleanly if you uninstall
Survives Edits and Re-Publishing
Because the script is registered at the site level rather than pasted into a page, it survives page edits, template changes, and re-publishing. Redesign your homepage, add new pages, switch sections around - the chat widget keeps working everywhere without any maintenance.
Parameters, Not Code
The embedded script template accepts two parameters - botId and embedType - which the app fills in per site. When you change either in the app settings, the app pushes the new values through Wix's scripts API and every page picks them up. You never see or touch the JavaScript.
This is the same "one credential, dashboard-driven everything" contract used across all nine Conferbot platform integrations, so if you also run a WordPress site or an Ecwid store, the mental model is identical.
Installation Guide: Two Ways to Install
There are two ways to get Conferbot onto a Wix site: the official app (recommended) or pasting the widget snippet into Wix's custom code slot. Both load the exact same widget; the app just removes the manual steps.
Option A: The Conferbot Wix App (Recommended)
One-click install, no code, and settings managed from a simple form. About 3 minutes end to end:
- Add the app to your site. Wix opens its standard installer flow and asks you to approve the app for your specific site - this is Wix's OAuth handshake, and it scopes the app to just this site
- Open the app settings page - a simple two-step form: a Chatbot ID field and an on/off switch
- Paste your Chatbot ID. In the Conferbot dashboard, open your bot and click Share, then Copy Bot ID (a 24-character hex value). You can also paste the full embed snippet or a dashboard URL - the app extracts the ID automatically. No account yet? Click the one-click demo bot button (
691c970890527a0468f9b2c9) - it works immediately without signing up - Save. The app pushes the bot ID and embed type to Wix's Embedded Script, and Wix renders the widget on every page (placement: body end, all pages)
- Check your live site - the chat bubble appears in the corner. If your site is not yet published, publish it first; the embedded script renders on the live site
The app automatically passes the platform context (platform: "wix") and keeps the embed updated centrally whenever you change settings.
Option B: Direct Embed via Custom Code
The pre-app method still works: paste the canonical widget snippet yourself under Settings > Custom Code in your Wix dashboard, added to the body - end of all pages:
<script src="https://cdn.conferbot.com/dist/v1/widget.min.js" async></script>
window.ConferbotWidget("YOUR_BOT_ID", "live_chat")
Note that the direct embed does not pass any platform context automatically - that is what the app adds - unless you hand-write the options argument yourself. You also take on maintenance: changing the bot ID or embed type means editing the snippet by hand. For almost everyone, Option A is the better choice.
Troubleshooting
- Widget blank after install? Confirm the bot is published in the Conferbot dashboard and the Chatbot ID is the 24-character hex value. The embedded script renders only after you save the settings once
- Still nothing? Try the demo bot ID - if the demo works, the issue is bot configuration (unpublished bot, disabled URLs), not the installation
The full merchant guide lives at developers.conferbot.com/docs/integrations/wix.
Configuration Options
The app keeps site-side configuration deliberately minimal - one credential and one presentation choice. Everything else lives in the Conferbot dashboard so your settings follow the bot, not the platform.
Chatbot ID
The only required setting. The field is forgiving: paste the bare 24-character ID, the full embed snippet from the dashboard's Share screen, or a dashboard URL - the app extracts and validates the ID automatically. Invalid values are rejected on save rather than silently breaking your site.
Embed Type
Choose how the chat appears:
- Floating bubble (
live_chat, default) - the familiar chat bubble in the corner of every page. Visitors click to open the conversation panel - Popup window (
popup_chat) - the chat opens as a popup, useful for focused support flows
Everything Else: Dashboard-Driven
Widget position, colors, theme, language, welcome message, auto-open behavior, proactive prompts, and per-URL disabling are all configured in the Conferbot dashboard under Customize and delivered to the widget at runtime. The app does not duplicate those settings - change them once in the dashboard and your Wix site updates on the next page load, no re-save needed in Wix.
Per-Page Control
The Wix app renders the widget on all pages by design. To hide the chat on specific pages (for example a landing page for a paid campaign), add those URLs to the disabled URLs list in the Conferbot dashboard - the widget checks the list at runtime and stays hidden on matching pages.
Uninstalling
Removing the app removes the embedded script registration, and the widget disappears from your site. Your bot, conversations, and settings remain intact in the Conferbot dashboard, so reinstalling later picks up where you left off.
What Context Is Passed to the Bot
Transparency matters when you add a third-party script to your site, so here is exactly what the Conferbot Wix app passes to the widget - and what it does not.
What Is Sent
The embedded script initializes the widget with a single piece of context:
customData: { platform: "wix" }
That platform marker tells the bot and your agents that the conversation originated on your Wix site, which is useful when the same bot runs on multiple channels.
What Is Not Sent
No visitor identity is passed by the app. Unlike the WordPress plugin (which passes the logged-in WordPress user) or the Magento module (which passes customer and cart data), Wix does not expose member identity to embedded scripts in a way the app could safely forward. Visitors start as anonymous, exactly as they would with the plain website widget.
Capturing Identity Conversationally
In practice this is rarely a limitation. Conferbot flows are designed to capture identity conversationally:
- Ask for a name and email early in the flow with validated input nodes - the answers attach to the conversation and appear in your inbox and analytics
- Use lead capture forms inside the chat to qualify inquiries before they reach your team
- Sync captured contacts to your CRM through Conferbot's integrations
Privacy Posture
Because the app passes no personal data by default, your privacy disclosure burden is small: the widget itself connects to Conferbot's servers to run the conversation, and anything a visitor types is processed by Conferbot on your behalf. Mention the chat widget in your privacy policy as you would any support tool. There are no cookies required for the widget to appear, no advertising identifiers, and no tracking of browsing history by the app.
Wix Use Cases
Wix powers an unusually broad range of sites - local services, creatives, restaurants, events, and stores. Here is how site owners put a chatbot to work on each.
Service Businesses: Qualify and Book
Plumbers, salons, consultants, and clinics live and die by inquiry response time. A bot answers "do you serve my area?", "what do you charge?", and "when are you available?" instantly, then captures the lead or books the appointment - including at 11pm when the owner is asleep. Pair with appointment booking templates to go live in minutes.
Portfolios and Agencies: Turn Visits into Briefs
A portfolio site's job is to start conversations. Instead of a static contact form, the bot asks about project type, budget range, and timeline - so the inquiry that lands in your inbox is already qualified. Visitors get engagement instead of a mailto link.
Restaurants and Local Businesses
Hours, menu questions, parking, reservations, dietary options - the same ten questions, every day. The bot answers them all instantly and hands off to a human only when something genuinely needs one.
Wix Stores: Pre-Sale Answers That Save Sales
For sites using Wix Stores, unanswered pre-sale questions are abandoned carts. Shipping cost, sizing, returns, stock - the bot answers on the spot and can walk shoppers to the right product. See our e-commerce chatbot guide for flow ideas that measurably lift conversion.
Events and Communities
Event pages generate bursts of identical questions: schedule, venue, tickets, refunds. A bot absorbs the burst, and registrations happen inside the conversation.
Content Sites: Grow the List
Bloggers and creators use proactive prompts to convert readers into subscribers - a well-timed "want the checklist from this article?" beats a footer signup form. The website chatbot guide covers proactive engagement patterns that work on content pages.
Theming and Customization
Wix sites tend to be visually distinctive, and a chat widget that clashes with your design undermines the polish you worked for. Conferbot keeps all appearance control in one place: the dashboard.
Dashboard-Driven Appearance
In the Conferbot dashboard under Customize, you control:
- Colors - primary color, bubble color, header, and message styling to match your Wix palette
- Position - left or right corner, with offset control so the bubble does not overlap Wix's own UI elements
- Avatar and branding - bot name, avatar image, and welcome screen
- Theme - light or dark presentation
- Language - widget UI language, matched to your audience
- Behavior - auto-open rules, load delay, proactive prompts, and disabled URLs
Runtime Delivery
Every setting is delivered to the widget at runtime. Change the bubble color at lunch and your live Wix site reflects it on the next page load - no re-publish in Wix, no app re-save, no cache to clear. This matters on Wix specifically because site publishing is an explicit step; your chat styling iterates independently of your site publishing cycle.
Conversation Design
Beyond looks, the visual flow builder shapes the conversation itself: welcome messages, quick reply buttons, carousels, forms, conditional branches, and AI knowledge answers. Start from a template - lead generation, booking, support - and adjust the copy to your brand voice.
One Bot, Many Faces
If you run several Wix sites (agencies often manage dozens), each site's app install can point at a different bot, or all sites can share one bot with the platform marker distinguishing traffic. Both patterns are managed from a single Conferbot workspace on any plan.
AI Answers and Live Agent Handover
A chat bubble is only as good as what answers it. Conferbot pairs automated flows and AI with a real-time human inbox, so your Wix site gets the full spectrum from instant automation to personal service.
Flow Automation
The drag-and-drop builder handles structured conversations: greetings, FAQ menus, lead qualification, bookings, and forms. Flows run instantly and consistently, 24/7, and every answer is under your editorial control.
AI Knowledge Answers
Connect AI models to answer free-form questions from your own knowledge - train the bot on your site content, documents, and FAQs, and it responds naturally to questions your flows did not anticipate. AI responses respect the guardrails you set, and you choose where AI is allowed to answer versus where the flow stays scripted.
Human Handover
When a conversation needs a person - a complex request, an upset customer, a hot lead - the bot hands over to your team's shared inbox. Agents see the full conversation history and the platform context (platform: "wix"), reply in real time from desktop or mobile, and hand back to the bot when done. Visitors never repeat themselves.
Offline Coverage
Outside business hours the bot keeps working: it answers what it can, captures contact details for the rest, and your team follows up in the morning. For a solo Wix site owner this is the practical difference between a chatbot and a live chat app - the bot does not need you online to be useful. Our guide to free website chatbots shows what you can automate on the free plan alone.
Performance and SEO
Site speed affects both your visitor experience and your search ranking, and Wix site owners are rightly cautious about third-party scripts. The Conferbot widget is engineered to stay out of the critical path.
Async, Non-Blocking Loading
The loader script is injected with the async attribute at body end. It downloads in parallel and never blocks HTML parsing or rendering - your Wix page paints at full speed whether the widget is present or not. The widget then initializes after the page content, so Largest Contentful Paint and First Contentful Paint are unaffected by design.
Small Footprint, CDN Delivered
The widget ships from cdn.conferbot.com with long-lived caching. Returning visitors load it from browser cache. The widget renders inside a web component with shadow DOM, so its styles cannot leak into or be broken by your Wix theme's CSS.
No Impact on Crawlability
The widget adds no content that interferes with how search engines see your pages: no layout shift on load (the bubble overlays rather than reflows), no interstitial that blocks content, and no cloaking. Google indexes your Wix pages exactly as before.
SEO Upside
Where a chatbot helps search indirectly is engagement: visitors who get an answer stay longer and bounce less, and answered pre-sale questions convert. For content strategy around this, see how to add a chatbot to your website.
When to Delay or Hide
If you run paid landing pages where every distraction costs conversion, use the dashboard's load delay and disabled URLs settings to keep the widget off those URLs entirely - runtime-controlled, no app changes needed.
Conferbot vs Generic Live Chat Apps on Wix
The Wix App Market lists many chat apps. Most fall into two categories: pure live chat (a human must be online) and form-style "leave a message" widgets. Here is an honest comparison by category rather than by naming competitors.
| Capability | Conferbot | Typical live chat app | Message-box widget |
|---|---|---|---|
| Answers when you are offline | Yes - flows + AI run 24/7 | No - offline form at best | No - collects a message |
| AI answers from your knowledge | Yes | Rarely, often as an add-on | No |
| Visual flow builder | Yes, no-code | Basic canned responses | No |
| Human live chat | Yes, with handover | Yes | No |
| Works beyond Wix (WhatsApp, Messenger, etc.) | Yes - one bot, many channels | Sometimes | No |
| Setup | Paste one Chatbot ID | Account + widget config | Drag onto page |
| Free tier | Yes | Varies | Usually |
The structural difference: a live chat app is a communication channel that depends on your availability, while Conferbot is an automation layer with live chat included. If you already know you want a human answering every conversation in real time, a pure live chat tool is fine. If you want the site to answer for itself first - qualifying leads, answering FAQs, booking appointments - and bring you in only when needed, that is what Conferbot is built for. See our Wix chatbot guide for a deeper look at choosing, or compare Conferbot plans - the Wix app itself is free and included in all plans.
Getting Started
You can have a working AI chatbot on your Wix site in the next few minutes:
- Try it risk-free: Install the Conferbot Wix app and click the one-click demo bot (
691c970890527a0468f9b2c9) - the widget goes live on your site with zero signup, so you can see exactly how it looks and behaves - Create your account: Sign up free at app.conferbot.com - no credit card required
- Build or pick a bot: Start from a template (lead generation, booking, support, e-commerce) or build from scratch in the visual builder
- Publish and connect: Publish the bot, copy its ID from Share, paste it into the Wix app settings, save
- Iterate from the dashboard: Adjust colors, prompts, and flows anytime - changes reach your Wix site at runtime with no re-publish
The free plan includes the full builder, the Wix app, and enough monthly conversations to validate the bot on real traffic. Paid plans start at $19/mo when you need more volume and features - see pricing.
Resources:
- Wix app source on GitHub (open source, MIT licensed)
- Developer integration guide
- Wix chatbot strategy guide and website chatbot setup guide
- Also on other platforms? Conferbot ships the same one-ID setup for WordPress, Shopify, BigCommerce, Joomla, Magento, OpenCart, Ecwid, and PrestaShop
How Conferbot Compares for Wix
Most platforms charge per message, per seat, or limit channels by tier. Here's how Conferbot is different.
| Feature | Conferbot | Typical Competitor |
|---|---|---|
| Channels included | 8 (all plans) | 3-6 (varies by tier) |
| Pricing model | Flat rate from $19/mo | Per-seat or per-message |
| AI chatbot builder | Yes (plain English) | No or limited |
| Native mobile SDKs | 4 (Android, iOS, Flutter, RN) | None (WebView only) |
| Knowledge base AI | Included | Add-on ($30-99/mo) |
| Live chat handoff | Included | Higher tiers only |
| Calendar booking | Built-in | Third-party required |
| Setup time | Under 10 minutes | Hours to days |
Wix FAQ
Everything you need to know about chatbots for wix.
Continue Exploring
Explore features, connect third-party tools, and browse ready-made templates.
Deep-dive pillar guides, real use cases, and the chatbot & AI glossary.