Wix Installation

Add Simple Commenter to your Wix website using the Custom Code feature.

Custom code injection requires a Wix Premium plan (any paid plan).

Step-by-Step Installation

1. Open Site Settings

  1. Go to your Wix Dashboard
  2. Click Settings in the left menu
  3. Select Custom Code (under Advanced)

2. Add the Script

  1. Click + Add Custom Code
  2. Paste this code:
<script
  src="https://simplecommenter.com/js/comments.min.js"
  data-domain="your-domain.com"
  defer
></script>
  1. Configure the settings:

    • Name: Simple Commenter
    • Add Code to Pages: All pages (or choose specific pages)
    • Place Code in: Body - end
  2. Click Apply

Replace your-domain.com with your actual domain. If you're using a Wix subdomain, use yourusername.wixsite.com/yoursite.

Using Your Wix Domain

If you're using a custom domain connected to Wix, use that domain in the script:

<script
  src="https://simplecommenter.com/js/comments.min.js"
  data-domain="www.yoursite.com"
  defer
></script>

Adding to Specific Pages Only

  1. When adding custom code, select Choose specific pages
  2. Select the pages where you want the widget
  3. Click Apply

Using Wix Velo (Advanced)

If you're using Wix Velo (formerly Corvid):

// In your page code or masterPage.js
$w.onReady(function () {
  const script = document.createElement("script");
  script.src = "https://simplecommenter.com/js/comments.min.js";
  script.dataset.domain = "your-domain.com";
  script.defer = true;
  document.body.appendChild(script);
});

Verifying Installation

  1. Publish your site
  2. Open your live site (not the editor preview)
  3. Look for the feedback button
  4. Check browser Developer Tools (F12) for errors

Troubleshooting

Widget not appearing

  • Ensure you've published your site after adding the code
  • Check that you're viewing the live site, not the editor
  • Verify your Wix plan includes custom code
  • Clear your browser cache

Custom Code option not available

  • Upgrade to any Wix Premium plan
  • The free plan doesn't support custom code injection

Widget appears in editor but not live site

  • Make sure to publish changes
  • Check if the code is set to apply to the correct pages

Need help? Contact support.

Was this page helpful?