How do I Remove This Index on Chat?
# 🤝help
p
I'm trying for a few hours to remove it, but I didn't find the option. Thanks for the help!

https://cdn.discordapp.com/attachments/1134981905238999110/1134981905423532112/thing.png

e
Hello! is the parameter "showConversationsButton": true, /*allows the user to see old conversations*/ if you want it not to be displayed, set False instead of True
p
thanks! but where do I edit this?
c
@bright-magazine-792 will be able to help here 🙂
b
Hey! You should use Configurable Script while injecting the webchat code to your website
Basically,
Copy code
// Include the Botpress Web Chat library
<script src="https://cdn.botpress.dev/webchat/v0/inject.js"></script>
 
// Initialize the web chat with default options
<script>
  window.botpressWebChat.init({
      "botId": "539dd4de-aaa1-4a46-9218-95f32b2a1e3f",
      "hostUrl": "https://cdn.botpress.cloud/webchat/v0",
      "messagingUrl": "https://messaging.botpress.cloud",
      "clientId": "539de4de-aea1-4a46-9218-95f32b2a1e3f",
      "botName": "Wonderful-chatbot",
      
      //this removes the conversation button
      "showConversationsButton": false
  });
</script>
Just make sure to use your own
botId
7 Views