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
- Go to your Wix Dashboard
- Click Settings in the left menu
- Select Custom Code (under Advanced)
2. Add the Script
- Click + Add Custom Code
- Paste this code:
<script
src="https://simplecommenter.com/js/comments.min.js"
data-domain="your-domain.com"
defer
></script>
-
Configure the settings:
- Name: Simple Commenter
- Add Code to Pages: All pages (or choose specific pages)
- Place Code in: Body - end
-
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
- When adding custom code, select Choose specific pages
- Select the pages where you want the widget
- 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
- Publish your site
- Open your live site (not the editor preview)
- Look for the feedback button
- 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.