In this categoryNo-Code · 24
- How to Build Your First App with LovableStart
- How to Build a Landing Page with v0 by Vercel
- How to Build a Full-Stack App with Bolt.new
- How to Write Better Prompts for AI App Builders
- How to Add User Login and Signup in a Lovable App
- How to Add Stripe Payments to a No-Code App
- How to Add an AI Chat Feature to a No-Code App
- How to Connect a Custom Domain to a Lovable or v0 App
- How to Build a Working Form App with No Code
- How to Export a Lovable App to GitHub and Run It Locally
- How to Turn a No-Code Web App into an Installable Mobile App
- How to Debug and Fix a Broken AI-Generated App
- How to Connect a Webhook to a No-Code App
- How to Train a Chatbase Bot on Your Website Content
- How to Build an FAQ Chatbot in Voiceflow From Scratch
- How to Embed a Chatbase Chat Widget on Your Website
- How to Auto-Reply to Instagram Comments With ManyChat Keywords
- How to Collect Leads With a Chatbase Chatbot
- How to Connect Voiceflow to a Custom AI Model and System Prompt
- How to Connect a Chatbase Bot to WhatsApp
- How to Add Human Handoff to a ManyChat Bot
- How to Improve a No-Code Chatbot Using Its Conversation Logs
- How to Send Voiceflow Chat Data to a Spreadsheet With an API Step
- How to Build a Quiz-Style Lead-Gen Bot in ManyChat
How to Embed a Chatbase Chat Widget on Your Website
Copy the Chatbase embed snippet, drop it into your site, and customize the bubble color, position, and welcome message without code.
Once a Chatbase agent is trained, you publish it as a floating chat bubble with a single script tag. The same snippet works on a hand-coded site, a CMS, or a no-code builder like Framer or Webflow. This guide covers getting the snippet, placing it correctly, and customizing the look.
What you need
- A trained Chatbase agent (see the training guide)
- Access to your site's HTML, theme editor, or a custom-code block
- Your agent's Chatbase ID, shown on the Connect tab
Step 1: Open the Connect tab
Inside your agent, open Connect, then Embed. Chatbase offers two modes: a floating bubble that sits bottom-right on every page, and an iframe you place inside a specific container. The bubble is right for support; the iframe is right for a dedicated help page.
Step 2: Copy the bubble snippet
Copy the script tag. It loads the Chatbase embed library and points it at your agent by ID. Paste it just before the closing body tag so it loads after your page content.
<script>
window.chatbaseConfig = { chatbotId: "abc123XYZ" };
</script>
<script
src="https://www.chatbase.co/embed.min.js"
id="abc123XYZ"
defer>
</script>Step 3: Customize the bubble
Back in Chatbase, the Chat Interface settings let you set the accent color, the bubble icon, the initial greeting message, and the alignment. These are saved server-side, so changes apply without editing your embed code again.
Step 4: Publish and test live
Publish your site, then load it in a private window so caching does not hide the change. The bubble should appear bottom-right. Click it, ask a question, and confirm the greeting and color match your settings.
Result
Your bot is now live as a branded bubble on every page that includes the snippet. To restrict it to certain pages, add the script only to those page templates instead of the global footer.
Watch related tutorials
10:30
22:00
30:00
15:30
12:00
18:20New guides in your inbox
Fresh step-by-step how-to guides as we publish them. One email a week, no more.