Hide trigger message from website

Often you would like to hide the popup message which comes along with the chat button. But when user clicks on the chat button to start the chat, you want message to be present there so that user can start the interaction.

To accomplish that you need to place few additional lines of code on your website along with our standard installation script. Below are the codes

Code to hide only message, but keep showing the unread message counter badge

<style>
.iticks-last-container {
    display: none !important;
}
</style>

Code to hide both message and counter badge

<style>
.iticks-last-container,.iticks-badge-container {
    display: none !important;
}
</style>

Last updated