Good morning,
I am working with the chat system. I would like to change the text of the the chat button (online und offline status)
Online:

Offline:

Now I would like to change the strings "Chat" and "Hilfe"
I found this documantion: https://developer.zendesk.com/embeddables/docs/widget/settings#chatlabel
This Code works fine for the online status button:
<script type="text/javascript">
window.zESettings = {
webWidget: {
launcher: {
chatLabel: {
'*': 'My new online button text'
}
}
}
};
</script>
for the online and offline button status text I should use this code:
<script type="text/javascript">
window.zESettings = {
webWidget: {
contactOptions: {
enabled: true,
chatLabelOnline: { '*': 'My new online button text' },
chatLabelOffline: { '*': 'My new offline button text' }
}
}
};
</script>
But this code doesn't change anything. Where is my fault? Thanks a lot :)


