Hide trigger message from website
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
Was this helpful?