StoreHippo offers the support for a live chat service on your store. You are provided with various chat apps that are integrated with StoreHippo. You just need to install them in your admin panel.
You can also integrate any custom live chat software, for example, Zoho salesIQ, Zendesk, etc. to your store.
Let's take an example of Zoho salesIQ, follow the below steps to integrate it with your store:
// Initialize the $zoho object if it doesn't already exist
window.$zoho = window.$zoho || {};
$zoho.salesiq = $zoho.salesiq || {
ready: function() {
// Your custom logic when the widget is ready can be added here
}
};
// Create a new script element
var zohoScript = document.createElement('script');
// Set the script's ID and source URL
zohoScript.id = 'zsiqscript';a
zohoScript.src = '<Enter the Script src you got from the Zoho>';
// Set the script to load asynchronously
zohoScript.defer = true;
// Append the script element to the document's head (or body)
document.head.appendChild(zohoScript);
Mention the widget src that you copied from the SalesIQ dashboard in the place of <widgetcode> in the above code.