The web messenger in Freshchat also known as the conversations widget, is used to deliver a convenient and contextual conversational messaging experience for customers. If you want to open it on load of the website please add the below code under
window.fcWidget.init({ "open": True,
You can test it at https://freshchat.xyz/home/-LsUZY3u1MRrI7cn2RoH
If you want the widget to open in x seconds, then make use of the following code,
<script> var timeInMillis = 5000; setTimeout(function() { window.fcWidget.init({ token: "webchattoken", host: "https://wchat.freshchat.com" }); },timeInMillis); </script> <script src= "https://wchat.freshchat.com/js/widget.js" async></script>