flat-fuchsia•15mo ago
Chatbot is not showing up on Website
Hey, I am testing the chatbot on my website but the message icon is not up on the shopify website, even when I have added the code for the bot in shopify theme.liquid file. Has anyone faced a similar issue? Is there othey way to integrate the chat bot to shopify website?
11 Replies
If your chatbot is not showing up on your Shopify website, it might be due to a CSS rule that hides empty elements. Here's how you can fix it:
1. Check and Update CSS in Shopify:
- Go to the
base.css
file in the Assets
folder of your Shopify code editor.
- Add the following CSS code to ensure the chatbot is displayed:
2. Ensure Proper Installation:
- Make sure you have correctly installed the web chat by copying the JS snippet provided by Voiceflow and pasting it between the <body> ... </body>
tags on every page where you want the chatbot to appear.
3. Enable the Web Chat:
- You can enable or disable the web chat using the toggle button found in the top-right corner of the Web Chat Integration page in your Voiceflow dashboard.
4. Publish a Version of Your Assistant:
- Ensure you have saved and published a Production Version of your assistant. Anytime you make changes to your assistant, you need to publish a new version for it to appear in your web chat.
For more detailed steps on customizing and embedding the web chat, you can refer to the following resources:
- Voiceflow Developer Documentation
- Voiceflow Help Centerflat-fuchsiaOP•15mo ago
where in base.css should I add the given code?
dependent-tan•15mo ago
I faced the same problem today
You need
to put this code
<style>
#voiceflow-chat { display: block !important; }
</style>
In folder -> assets -> css
However I
ve done this, and it didn
t helpflat-fuchsiaOP•15mo ago
where in css did you put the code?
dependent-tan•15mo ago
.
At the end
flat-fuchsiaOP•15mo ago
I figured it out
dependent-tan•15mo ago
How?
flat-fuchsiaOP•15mo ago
it did not work when I put it in css
however, i put it in the <body> just after the chatbot code
now, it's showing
dependent-tan•15mo ago
Wow
flat-fuchsiaOP•15mo ago
thanks for your help
dependent-tan•15mo ago
I`ll test it right now
Hah
It really works
Thank you bro