Wix

Add Inclusify to your Wix website in minutes using Custom Code.

Register the domain first

Add your domain in the Inclusify panel before you paste the script tag. Bundles are built per registered domain, and an unregistered one fails silently: the script URL still returns HTTP 200, but what it serves is a single console.log saying the domain is not registered. There is no error to find and no widget appears.

Installation Steps

1

Open Site Settings

Custom Code lives in the site dashboard, not in the Editor. Go to Settings in the dashboard, then click Custom Code under Development & integrations.

2

Add Custom Code

Click + Add Custom Code in the top right.

3

Paste Widget Code

Paste the following code:

HTML
<script src="https://app.inclusifyapp.com/w/YOUR-DOMAIN.com.js" async></script>

Replace YOUR-DOMAIN.com with your actual domain.

4

Configure Settings

  • • Name: Inclusify Widget
  • • Add Code to Pages: All pages
  • • Place Code in: Body - end
5

Apply & Publish

Click Apply, then publish your site to make the changes live.

Notes

  • • Wix requires the site to be published and to have a connected domain before Custom Code runs, which means a Premium plan
  • • The dashboard path is the same for Wix Editor and Wix Studio sites
  • • Custom Code never runs in the Editor or in Preview - test the published site
  • • The widget will appear on all pages automatically

Verify the installation

  1. Publish the site — Custom Code never runs in the editor or in Preview mode, only on the published site.
  2. Open the published URL in a private window and check that the accessibility icon appears.
  3. Return to Settings → Custom Code and confirm the snippet's status shows as applied to All pages.

Widget bundles are served from a CDN and cached for a few hours. If you changed widget settings in the panel and the site still shows the old configuration, wait for the cache to expire or load the script URL directly with a cache-busting query string (`?v=2`) to confirm the new version is being served.

Troubleshooting Wix installs

There is no Custom Code option in Settings.
Custom Code requires a Wix Premium plan and a connected domain. Sites on a free plan or a wixsite.com subdomain cannot add third-party scripts.
The widget works on the home page but not on others.
The snippet was saved with a page selection rather than All pages. Edit it in Settings → Custom Code and set "Add Code to Pages" to All pages.
The widget does not appear on dynamic pages.
Wix renders dynamic pages client-side without a full reload. Enable "Load code once" rather than per-page loading so the script persists across in-site navigation.
Everything looks right in the editor but the live site is unchanged.
Custom Code only takes effect after publishing. Press Publish, then hard-reload the live URL.

Wix questions

Do I need a paid Wix plan?
Yes. Wix restricts Custom Code to Premium plans with a connected domain. There is no way to add a third-party script on the free tier.
Does this work on Wix Studio as well as the classic Editor?
Yes. The path differs slightly — in Wix Studio the option is under Settings → Custom Code in the dashboard rather than the left editor menu — but the snippet and placement are identical.
Should the code go in the head or at the end of the body?
Body – end. The script is async and does not need to run before the page renders, and loading it last keeps it off the critical rendering path.
Will the widget show up in Wix Preview?
No. Wix strips Custom Code from Preview and the editor canvas. Always test against the published site.

Related