Suite | Cualquier plan |
Aunque las respuestas automáticas con artículos se pueden usar en cuanto estén configuradas en el Web Widget (clásico), algunas de las funciones se pueden configurar modificando la API de JS, incluido lo siguiente:
Artículos relacionados:
Suprimir las respuestas automáticas
En los casos en que no desea sugerir respuestas, ahora puede usar la API de JS para suprimirlas, de manera similar a lo que haría con otras opciones del canal:
window.zESettings = {
webWidget: {
answerBot: {
suppress: true
}
}
};
Si desea más información, consulte la llamada de supresión de la API de JS.
Suprimir temporalmente los canales de contacto
Puede usar una API de JS para forzar el uso del autoservicio antes de que se muestren las opciones de contacto:
window.zESettings = {
webWidget: {
answerBot: {
contactOnlyAfterQuery: true
}
}
};
Cuando se establece en true
, los usuarios tendrán que intentar resolver sus propios problemas primero (con simplemente hacer su pregunta / plantear su problema), después de lo cual se presentarán las opciones de contacto como de costumbre.
Actualizar el aspecto del bot
Puede controlar el título del widget, el nombre del bot y el avatar mostrados a través de la API de JS básica que se muestra a continuación. De manera predeterminada, la etiqueta "Bot" siempre estará presente para ayudar a indicarle a los usuarios que la experiencia no es con un ser humano.
Agregue el siguiente fragmento de código ANTES de que se cargue el script del widget. Luego puede controlar y definir el título, el nombre del bot y la fuente de la imagen del avatar, por ejemplo:
<script type="text/javascript">window.zESettings = {
webWidget: {
answerBot: {
avatar: {
url: 'https://link-to-some-image',
name: { "*" : 'Zendesk'
}
},
title: { "en-US": "Support"
}
}
}
};
</script>
Filtrar las sugerencias de artículo en función del rótulo
Puede usar la API de JS para establecer rótulos que se pasen a los artículos recomendados. A continuación, las respuestas automáticas pueden buscar sugerencias usando solo los artículos que contengan esos rótulos.
<script>zESettings = { webWidget: { answerBot: { search: { labels:
['hello', 'world'] } } }}</script>
Esta opción puede ser útil en los siguientes casos:- Crear un mapeo de url que establezca las etiquetas según dónde se encuentre el usuario en el sitio web (digamos que si se encuentra en la categoría de un producto específico, puede establecer etiquetas para asegurarse de que solo se filtren los artículos para ese producto).
- Filtrar artículos para una plataforma en particular en función del dispositivo detectado.
- Y muchos más...
11 comentarios
Dane
This will only work for Live Chat (Classic Widget).
0
Daniel Michaels
I used the code from updating the appearance of answer bot in Rosetta Theme 1.4.2 so I could change the picture of the avatar. I had put the code in script.js in the helpdesk so that it would change the values. This worked perfectly.
In Sandbox we just updated Rosetta Theme version 2.1.2. I added the same code
//Answer Bot Changes
window.zESettings = {
webWidget: {
answerBot: {
avatar: {
url: 'https://rustoleum.com/zendesk/RO-Chat-Bot.png',
name: {"*": 'RO'}
}
}
}
};
The avatar does not change to the picture? Did something change with the new version that I need to adjust the settings?
0
Dane
As it turns out, there's no option to remove it if you have turned on Article recommendation for your widget. However, you can rename it by using this API.
0
Stephanie Knuteson
I am trying to locate in HTML where the " widget script is loaded" so that i can remove the "Bot" language. I want to just want to remove the highlighted language nothing else. I have looked through ever page and can not find the web widget info listed anywhere.
0
Tony
This is Tony from Zendesk.
The code you are using right now should attach contextual data when submitting a user query, as you can see here.
I believe you are looking for something that will enhance the contextual help provided by the web widget, then I think you should use this option and integrate it in your site.
Best,
0
Jimmy
not having any luck with that snippet of code. (filtering articles using labels). I'd like a specific article to be recommended when the keywords "return, refunds" etc are used.
0
波乗り洋平
Hi Dylan
Looking at the API reference, I thought I might not be able to. You can't do that. Consider Messaging & Flow Builder.
Thank you friend!
0
Dylan Tragjasi
It is not currently possible to modify the "Get in touch" button shown in the screenshot below.
You may want to consider switching to Messaging as outlined here. This will provide you with access to Flow Builder, which allows significantly more customization as far as the kind of wording you can use within your widget.
Hope this helps!
- Dylan
0
波乗り洋平
hi.
I have enabled Answer Bot and manned chat in the widgets on the Help Center site.
When you open the widget, you'll see a comment saying "Get in touch" after the bot's greeting. Can I change the text "Get in touch" ?
0
Aimee Spanier
Thanks for catching those, Justin! I've fixed the resource link and removed the video until I can track down a working version of it.
0
Iniciar sesión para dejar un comentario.