Zero database load
The chat doesn't touch your WordPress database. Comments, users, sessions all live on our infrastructure. Your wp_* tables stay clean.
Drop one <script> tag into your theme. Works with Divi, Astra, Elementor, every block theme. No plugin to maintain.
WordPress plugins age — they break on WP-core updates, ship security CVEs, or get abandoned. Our chat runs entirely on our side; you embed it the same way you'd embed a YouTube video.
The chat doesn't touch your WordPress database. Comments, users, sessions all live on our infrastructure. Your wp_* tables stay clean.
A single line in your theme's footer or via a code-snippet plugin (WPCode etc.). No update flow to follow. No "plugin needs your attention" notices. No core-compatibility breakages.
Divi, Elementor, Beaver Builder, Bricks, native block themes — all support a custom-HTML / embed block where the script tag drops in cleanly.
The widget is iframed and tagged noindex. Search engines see your content, not the chat surface. Your posts rank for what they're written about.
Paste this into your theme's footer (Appearance → Theme File Editor → footer.php) or use a header/footer-script plugin like WPCode:
<script>
(function() {
var s = document.createElement('script'); s.async = true;
s.src = '//d2yy16lkdmfg04.cloudfront.net/resource/chat.js';
var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
})();
window.embeddedChatAsyncInit = function() { embeddedChat.init("YOUR_PROJECT_TOKEN"); };
</script>
Your YOUR_PROJECT_TOKEN is on the panel dashboard after signup. That's it.