You can suppress autoreplies in the Web Widget (Classic) using the JS API. By setting thesuppress
property totrue
, you can prevent the widget from suggesting answers in certain situations. This is useful if you want to control when and how suggestions are made to users.
To implement this, add the following code snippet to your settings:
window.zESettings = { webWidget: { answerBot: { suppress: true } } };
For more details, you can refer to theoriginal documentation.
To temporarily suppress contact channels in the Web Widget, you can use the JS API to require users to attempt self-service before showing contact options. This encourages users to find answers themselves before reaching out for support. Here's how…
You can customize the appearance of the bot in the Web Widget by modifying the widget's title, bot name, and avatar using the JS API. This allows you to tailor the bot's look to better fit your brand. To do this, add the following code snippet…
Filtering article suggestions by label in the Web Widget allows you to provide more relevant content to users based on their context. You can use the JS API to set specific labels that the autoreply feature will use to filter articles. To implement…