Open Chat Window with Hyperlink?
# 🤝help
f
I would like my chat conversation window to be able to be opened with a hyperlink anywhere on the page in addition or instead of the chat bubble at page bottom. Seems like it should be easy but I am having trouble making it happen. Anyone have a solution? This would be super useful for me and others I imagine.
r
You could add this to your page javascript:
Copy code
window.onhashchange = (event) => {
    if (event.newURL.includes('#webchat')) {
        window.botpressWebChat.sendEvent({ type: 'show' })
    }
}
Then have a link that ends with '#webchat' to open the webchat on the page
YOu can read more about webchat control using javascript here https://botpress.com/docs/cloud/channels/webchat/
f
I'll take a look, thank you!
2 Views