URL: https://culinarysolvent.com. I currently have the Shopify Inbox enabled, chat icon shows up at the bottom left of every page. I would like to hide the chat feature from loading on the Homepage only, suggestions from the internet say pasting the below css code into my theme.css.liquid file should do it, however the icon is still appearing.
In addition to assistance with the proper code to paste, does anyone have experience/knowledge with hiding the chat widget on the homepage to improve site load speed? Much appreciated.
Hey! Don’t want to hijack this thread, but I cannot for the life of me figure out how to change this text with CSS from “Chat with us” to just “Chat.” I tried targeting the heading (h2) with (using Safari’s Web Inspector), and found the selector .interstitial-view__welcome .store-info-heading h2. My plan was to display: none !important it, and then use ::after pseudo status/class and do content: 'Cart' !important, but I think the problem is that the Shopify Inbox CSS is dynamically generated and a part of the styles.css stylesheet (dynamically generated itself), and none of the theme.css.liquid (or other liquid) files seem to contribute in a meaningful way to the styles.css. And because it’s generated at the time the webpage is load, it’s always going to take priority as far as the DOM is concerned. Also, all this stuff is in Shadow DOM, so I’m not even sure I can do anything with CSS anyways. Any ideas?