Auto-moderation
Tune toxicity and spam thresholds in the dashboard. Guide →
The Comments widget is Vuukle’s flagship — a threaded comment system with social/email login, GIFs, image upload, voting, sorting, and built-in moderation.
Add the install script, then drop the widget anchor wherever you want comments to render:
<div id="vuukle-comments"></div>Install the Vuukle WordPress plugin. Comments are enabled by default — to toggle, Settings → Vuukle → Comment widget settings → Enable comments.
Auto-enabled by the Blogger install.
Use the AMP iframe pattern — see Install on AMP pages for the boilerplate.
Everything that used to live in VUUKLE_CONFIG.comments is now managed from the Vuukle dashboard → Site Settings → Comment Widget. This includes:
The browser-side VUUKLE_CONFIG is intentionally focused on per-article metadata (title, url, image, tags). That’s the only thing the browser knows that the server doesn’t. Everything else belongs in the dashboard so non-technical admins can change it without redeploys.
For the full browser-side schema, see the VUUKLE_CONFIG reference.
If you have your own login system and want to skip the Vuukle login modal, hook up Single Sign-On via a callback:
<script> var VUUKLE_CONFIG = { apiKey: 'YOUR_PUBLIC_API_KEY', articleId: 'post-12345', comments: { auth: { sso: { onClick: openYourLoginModal }, }, }, };</script><script src="https://cdn.vuukle.com/platform.js" async></script>Replace openYourLoginModal with your own function. Generate a signed SSO token server-side and pass it to window.vuukleLogin(token) to authenticate the user. Full walkthrough: SSO overview and generate an SSO token.
To force SSO-only (remove all other login buttons), enable Site Settings → Comment Widget → Login method → SSO only in the dashboard.
The dashboard exposes every customization point as a form field — no code required:
| Want to change… | Where in the dashboard |
|---|---|
| Brand color, dark mode | Site Settings → Comment Widget → Theme |
| Login providers shown | Site Settings → Comment Widget → Login methods |
| Character limit | Site Settings → Comment Widget → Character limit |
| Default sort order | Site Settings → Comment Widget → Default sort |
| Auto-publish on/off | Site Settings → Comment Widget → Auto-publish |
| Toxicity / spam thresholds | Site Settings → Comment Widget → Moderation |
| Editor toolbar (images, GIF, bold, etc.) | Site Settings → Comment Widget → Editor |
| String overrides (translations) | Site Settings → Comment Widget → Visible text |
Auto-moderation
Tune toxicity and spam thresholds in the dashboard. Guide →
SSO overview
Skip the Vuukle login and authenticate users with your own system. SSO →
Customize Emote images
Replace the 6 default reactions. Emote customization →
Block IPs and emails
Stop repeat offenders cold. Block list →