Wix
Add JsonLD.io to your Wix website using Wix's custom code feature.
Installation Steps
- Go to your Wix Dashboard
- Click Settings in the left menu
- Select Custom Code under "Advanced"
- Click + Add Custom Code
- Paste the following:
<script async src="https://jsonld.io/api/jsonld/YOUR_TOKEN?format=js"></script>
- Configure the settings:
- Name: JsonLD.io Schema
- Add Code to Pages: All pages (or select specific pages)
- Place Code in: Head
- Click Apply
Alternative: Using Wix Velo
If you have Wix Velo (formerly Corvid):
- Enable Developer Mode in your Wix Editor
- Open the masterPage.js file
- Add:
$w.onReady(function () {
const script = document.createElement('script');
script.src = 'https://jsonld.io/api/jsonld/YOUR_TOKEN?format=js';
script.async = true;
document.head.appendChild(script);
});
Wix Plans
Custom code features require a Premium Wix plan. The custom code option is available on:
- Combo plan and above for personal sites
- Business Basic and above for business sites
Verification
- Publish your Wix site
- Visit your live site
- Right-click → View Page Source
- Search for
application/ld+json - Confirm your schema is present
Notes
- Changes may take a few minutes to appear after publishing
- The script works on all page types: static pages, blog posts, store products, etc.
- JsonLD.io automatically detects the current page URL and serves the matching schema
Troubleshooting
Code not working?
- Ensure your site is published
- Verify you have a Premium plan that supports custom code
- Check that the code placement is set to "Head"
- Clear your browser cache
