Widgets Self Auto-Popping
Have noticed that for some hours now a number of my clients chat widgets are auto opening without specifying it to do. Any assist on this? @Chidi
localStorage the widget saves a flag in the browser. If a visitor opened the chat at any point, every subsequent page load – even hours or days later – will reload the widget already opened. Nothing else in your code has to call open() for this to happen.open() or the persistence flag re-opens it.'memory' or you manually call close() in the on-load callback the widget will stay minimised until the visitor decides to open it.open()open()'memory'close()assistant: {
persistence: 'localStorage' // default
}