First bot with header question
# 🤝help
s
Hi there, I've just created my first chatbot which has been published and have been configuring the header. Can someone please explain what this setting is (see image with red circle). How do I remove it as it doesn't seem to be adding anything to the bot. I have tried to search for help so sorry if this is already been answered. Thanks Ray

https://cdn.discordapp.com/attachments/1135867294241800193/1135867294619275284/Screenshot_2023-08-01_at_10.22.04.png

https://cdn.discordapp.com/attachments/1135867294241800193/1135867294925467658/Screenshot_2023-08-01_at_10.22.10.png

a
Hey @some-greece-38740 it's called the conversations button, and it lets users start a brand new conversation with the chatbot without abandoning their current conversation. You can disable it by adding
'showConversationsButton':'false'
in the init() function where you embed your bot into your website. We've got more info in our documentation here https://botpress.com/docs/cloud/webchat-customization/header/
s
Thanks @acceptable-kangaroo-64719 I'm reading the documentation for this.
@acceptable-kangaroo-64719 can I get your help with displaying an email address please? For some reason the email in the following image only appears when a user hovers over the bubble and I was wondering why this is and how I can make it image invisible.

https://cdn.discordapp.com/attachments/1135867294241800193/1135997243091079400/Screenshot_2023-08-01_at_19.01.21.png

https://cdn.discordapp.com/attachments/1135867294241800193/1135997243330150480/Screenshot_2023-08-01_at_19.01.41.png

a
could try something like this in your CSS:
Copy code
css
.bpw-chat-bubble-content a[href^="mailto:"] {
  color: blue;
  text-decoration: underline; /* Optional: Add underline to the email links */
}
s
Thanks @acceptable-kangaroo-64719 I will try this.
2 Views