window.botpress.on('webchat:initialized', (event) => { setTimeout(() => { window.botpress.open() }, 500) })
botpress.com/docs
botpress.com/docs#ask
window.botpress.on('webchat:initialized', (event) => { setTimeout(() => { if (window.location.hash === '#ask') { window.botpress.open() } }, 500) window.addEventListener('hashchange', () => { if (window.location.hash === '#ask') { window.botpress.open() } }) })
#ask
window.botpress.init
// First, execute this: window.botpress.init({ botId: 'xxxxxxxxxxxxxxxxxxxxxx', configuration: { website: {}, email: {}, phone: {}, termsOfService: {}, privacyPolicy: {}, variant: 'soft', themeMode: 'light', fontFamily: 'inter', }, clientId: 'xxxxxxxxxxxxxxxxxxxxxx', }) // Then, execute this: window.botpress.on('webchat:initialized', (event) => { setTimeout(() => { window.botpress.open() }, 500) })
Was this page helpful?