I’m trying to remove the chat bot.
Topic summary
A user seeks help removing a chatbot from their Shopify store (necksupportbrace.com).
Two solutions provided:
-
JavaScript approach - Add code snippet above the
</body>tag intheme.liquidfile to hide the chat widget element -
CSS approach - Add
chat-widget { display: none !important; }to the store’s CSS file (base.css, theme.css, style.css, main.css, or custom.css)
Both methods involve accessing the theme code editor through Online Store > Edit Code. The discussion remains open with no confirmation of which solution was implemented or whether the issue was resolved.
Hey @Shaner123
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @Shaner123 ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.
chat-widget {
display: none !important;
}
