How do I hide chat?

You've installed Dashly and now your site has our chat icon. In case you don't need chat, you can hide it:

  • Visible (always visible);
  • Only if there's at least one conversation;
  • Invisible (visible only if there's an unread conversation).

Settings can be done in "General settings" section of admin panel:

Chat visibility settings

Hide chat on specific pages?

Add this script into page document

dashly.onReady(function () { dashly.removeChat(); });

Open chat with a script

In case you want your own button to open chat, add a handler:

dashly.open()

This will open chat even if it is invisible.