How can I hide the chat widget on specific pages?

Here is a workaround you add an id= inline to your body tag in your theme.liquid file


...lots of code here

Then in your custom.css file you can add the css to remove it

#not-home #dummy-chat-button-iframe {
display: hidden !important;
visibility: hidden !important;
}