How to install the Crisp live-chat chatbox on Wix
This article explains how to add the Crisp chatbox to a Wix website.
Wix lets you add third-party scripts from your site's Custom Code settings. Once your Crisp script is added and applied to your pages, the chatbox can load on your published site.
Copy your Crisp chatbox script
Start by copying the HTML script from your Crisp workspace.
To copy your Crisp script:
- Open Crisp.
- Navigate to Settings → Workspace Settings → Setup & Integrations.
- Open HTML.
- Copy your Crisp chatbox code.

Add the script in Wix
Add Crisp as a custom code snippet from your Wix dashboard.
To install Crisp in Wix:
- Open your Wix site dashboard.
- Go to Settings → Development & Integrations → Custom Code.
- Click Add Custom Code.
- Paste your Crisp script in the code field.
- Give the snippet a clear name, such as
Crisp chatbox. - Apply it to All pages.
- Choose Body - end as the placement.
- Click Apply and open your published website to test the chatbox.
If audio or video calls do not work
Some Wix setups may block microphone or camera permissions inside embedded frames. If Crisp audio or video calls do not work after installation, add a second custom code snippet and load it after the Crisp snippet.
<script>
var iframes = document.querySelectorAll("iframe");
for (var i = 0; i < iframes.length; i++) {
var name = iframes[i].getAttribute("name");
if (name && name.includes("htmlComp")) {
iframes[i].setAttribute("allow", "microphone; camera");
}
}
</script>
Updated on: 03/05/2026
Thank you!