Steps to change the Live Chat Widget on the website
You can change your live chat widget appearance with your customized image and make them look more attractive on your website.
You might have seen the Christmas Live Chat Widget on the SalesIQ website; I would like to share how we did this with SalesIQ JS APIs.
Steps to change the Live Chat Widget on the website:
- Go to your website source code, where you have placed the SalesIQ live chat widget code.
- Copy and place the given code below the SalesIQ code:
- <div id="salesiqchat" style="position:fixed;bottom:20px;right:20px;"></div>
- <script>
- $zoho.salesiq.ready=function(embedinfo)
- {
- $zoho.salesiq.floatbutton.visible("hide");
- $zoho.salesiq.floatwindow.minimize(function()
- {
- $zoho.salesiq.floatbutton.visible("hide");
- });
- $zoho.salesiq.floatwindow.close(function()
- {
- $zoho.salesiq.floatbutton.visible("hide");
- });
- $zoho.salesiq.custom.html("salesiqchat",{"online.html":"<img src ='https://zoho.com/salesiq/images/we-are-online.png' style='height:150px;width:150px'>", "offline.html":"<img src ='https://zoho.com/salesiq/images/we-are-offline.png'style='height:150px;width:150px'>"});
- }
- </script>
- Then, Save changes. The exclusive Christmas live chat widget will appear on your website.
Related Articles
Steps to change the Live Chat Widget on the website:
You can change your live chat widget appearance with your customized image and make them look more attractive on your website. You might have seen the Christmas Live Chat Widget on the SalesIQ website; I would like to share how we did this with ...
How to replace the image in the Live Chat widget?
To replace your customized image in the live chat widget, you can remove the existing image URL in the <img src> tag and place your image URL in the code. (Note: The image URL is marked in red for your reference) ...