Cookie Consent for Wix
Cookiezy gives Wix teams a straightforward path to consent management using the actual Wix custom-code package. The Wix adapter boots from the head with the canonical `cookiezy-wix-adapter.js` entrypoint, loads the core runtime, then adds the UI and scanner in the footer for a clean site-wide setup.
A practical Wix consent setup for site owners, marketers, and implementation partners.
Cookie banner preview
Lightweight. Fast. Clear by default.
What the Wix ZIP includes
After account access is active you download `cookiezy-platform-core.zip`. For Wix you use the files inside `packages/adapters/wix/custom-code/`. The canonical head entry file is `cookiezy-wix-adapter.js`; `wix-bootstrap.js` remains only as a deprecated compatibility wrapper.
- • `custom-code/cookiezy-wix-adapter.js`
- • `custom-code/cookie-consent.js`
- • `custom-code/cookie-consent-ui.js`
- • `custom-code/cookie-consent-scanner.js`
- • `custom-code/cookie-consent.css`
- • `custom-code/global-head-snippet.html`
- • `custom-code/global-footer-snippet.html`
- • `custom-code/policy-page-embed.html`

Upload the Wix custom-code assets to a public URL
Extract `cookiezy-platform-core.zip` and host all files from `packages/adapters/wix/custom-code/` on a public asset path you control. The placeholder below is not a Cookiezy CDN; replace `__COOKIEZY_ASSET_BASE_URL__` with your real hosted asset root.
Code snippet
__COOKIEZY_ASSET_BASE_URL__/wix/cookiezy-wix-adapter.js
__COOKIEZY_ASSET_BASE_URL__/wix/cookie-consent.js
__COOKIEZY_ASSET_BASE_URL__/wix/cookie-consent-ui.js
__COOKIEZY_ASSET_BASE_URL__/wix/cookie-consent-scanner.js
__COOKIEZY_ASSET_BASE_URL__/wix/cookie-consent.cssAdd the real head and footer snippets in Wix custom code
In Wix Settings, open Custom Code. Put the contents of `global-head-snippet.html` into the head for all pages, then add the contents of `global-footer-snippet.html` before the closing body for all pages. Replace `__COOKIEZY_ASSET_BASE_URL__` with your hosted asset URLs. The issued package should also carry the account-linked `siteKey`, verification URL, and billing URL values used by runtime verification.
Code snippet
<link rel="stylesheet" href="__COOKIEZY_ASSET_BASE_URL__/wix/cookie-consent.css">
<script src="__COOKIEZY_ASSET_BASE_URL__/wix/cookiezy-wix-adapter.js"></script>
<script>
window.CookiezyWixAdapter.boot({
locale: "en",
storageKey: "wix_cookie_consent_v1",
policyUrl: "/en/cookie-policy",
theme: { layout: "bottom-right", themeClass: "" },
texts: {}
});
</script>
<script src="__COOKIEZY_ASSET_BASE_URL__/wix/cookie-consent.js"></script>
<script src="__COOKIEZY_ASSET_BASE_URL__/wix/cookie-consent-ui.js"></script>
<script src="__COOKIEZY_ASSET_BASE_URL__/wix/cookie-consent-scanner.js"></script>Register the live domain, embed the policy audit, and validate the live site
Register the live Wix hostname in Cookiezy billing before publish so runtime verification can return `allowed: true`. Then open your Wix cookie policy page and insert the markup from `policy-page-embed.html` where you want the audit to appear. Publish the site and test the banner, footer settings reopen flow, and policy page scan in a clean session.
- • Confirm the banner appears on first page load
- • Reject optional categories and verify only necessary cookies remain
- • Open `/en/cookie-policy` and confirm the audit block renders
- • Reopen the settings modal from the footer after the first choice
Show a live cookie scan inside the Wix policy page
The Wix adapter can embed Cookiezy's audit view on the cookie policy page. The scan displays cookies visible in the current browser session with category, provider, purpose or description, and duration, then lets users re-scan after changing their consent choices.
Live cookie scan for this browser session
This audit reads the cookies currently visible on the domain in your browser and maps known cookies to categories and purposes. Re-scan after changing consent to verify what stays active.
How Cookiezy handles cookies on this site
Necessary cookies stay active so the site, login flow, and consent preferences keep working. Optional categories can be enabled or disabled by the visitor through Cookiezy settings.
This scan reflects the current browser session and the current state of consent on this device.
Cookie categories used on the site
Necessary
Required for security, routing, authentication, and storing the consent choice itself.
Analytics
Used to understand traffic and site usage when the visitor has granted analytics consent.
Marketing
Reserved for advertising, retargeting, and campaign tracking when marketing consent is granted.
Built for real Wix site needs
A better fit for teams that want a clean consent flow without enterprise overhead.
Wix custom code ready
The package includes dedicated head, footer, and policy page snippets for the Wix install flow.
Optional script control
Keep analytics and marketing logic off until the visitor actively opts in.
Wix cookie consent FAQ
Helpful answers for teams considering Cookiezy on Wix.
Which ZIP should I use for Wix?
Use `cookiezy-platform-core.zip` and take the Wix-specific assets from `packages/adapters/wix/custom-code/`.
Do I need separate head and footer snippets on Wix?
Yes. The intended Wix install uses `global-head-snippet.html` for the bootstrap and core runtime, plus `global-footer-snippet.html` for the UI and scanner scripts.
How do I show the cookie audit on the policy page?
Add the markup from `custom-code/policy-page-embed.html` to the Wix page where you want the audit section to appear.
Can visitors change their choice later?
Yes. Cookiezy supports reopening consent settings from a persistent UI entry such as the footer.
How this adapter is delivered today
This page shows the current delivery lane for the adapter and separates the live channel from planned standalone or marketplace lanes.