Hide web chat icon
Why hide the web chat icon and use a custom launch event?
Advantages:
Disadvantages:
<script src="https://widget.mava.app" data-hide-mava-launcher="true" />
const script = document.createElement('script');
script.id = 'MavaWebChat';
script.setAttribute('widget-version', 'v2');
script.setAttribute('data-token', 'YOUR_TOKEN');
var windowWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
if (windowWidth < 768) {
script.setAttribute('data-hide-mava-launcher', 'true');
}
window.document.head.appendChild(script);
How to display unread message notifications
Last updated