Wix

Add JsonLD.io to your Wix website using Wix's custom code feature.

Installation Steps

  1. Go to your Wix Dashboard
  2. Click Settings in the left menu
  3. Select Custom Code under "Advanced"
  4. Click + Add Custom Code
  5. Paste the following:
<script async src="https://jsonld.io/api/jsonld/YOUR_TOKEN?format=js"></script>
  1. Configure the settings:
    • Name: JsonLD.io Schema
    • Add Code to Pages: All pages (or select specific pages)
    • Place Code in: Head
  2. Click Apply

Alternative: Using Wix Velo

If you have Wix Velo (formerly Corvid):

  1. Enable Developer Mode in your Wix Editor
  2. Open the masterPage.js file
  3. 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

  1. Publish your Wix site
  2. Visit your live site
  3. Right-click → View Page Source
  4. Search for application/ld+json
  5. 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