A WhatsApp contact button that appears on your site with a single line of JavaScript.

The Fynchat Chat Widget is a floating button you add to any website to turn visitors into WhatsApp conversations directly.
Features:
Go to Settings → Chat Widgets
Click + New Widget
Configure:
Copy the embed code
Place this before the </body> tag:
<script src="https://fynchat.com/widget/widget.js"
data-id="wd_xxxxxxxxx" async></script>
That's all. The button will appear automatically.
?utm_source=facebook), it's added to the message automatically<script>
// Don't load the widget on the Checkout page
if (!window.location.pathname.includes('/checkout')) {
document.write('<script src="..." data-id="..."><\/script>');
}
</script>
<script>
window.addEventListener('scroll', function () {
// Load after the first scroll (doesn't slow down page load)
if (window.scrollY > 100 && !window.flLoaded) {
window.flLoaded = true;
const s = document.createElement('script');
s.src = 'https://fynchat.com/widget/widget.js';
s.dataset.id = 'wd_xxx';
document.body.appendChild(s);
}
});
</script>
To prevent your widget from being used on unauthorized sites:
yourdomain.com
*.yourdomain.com
shop.yourdomain.com
Leave it empty to allow everyone (useful during testing).
data-id is correctA Pro version with custom animations, sounds, and popup forms is available on the Business plan.
We use essential cookies to run the site. With your permission we also measure usage and ad performance. You can change this anytime. Privacy policy