To successfully hide the email transcript option in Zendesk chat, you need to add the script after your existing widget code.
Here's how it should look:
<!-- Start of Zendesk Widget script --> <script id="ze-snippet" src="https://static.zdassets.com/ekr/snippet.js?key= *insert widget key*"> </script> <!-- End of Zendesk Widget script --> <script type="text/javascript"> window.zESettings = { webWidget: { chat: { menuOptions: { emailTranscript: false } } } }; </script>
Ensure that the script is placed correctly to avoid any issues with the widget functionality.
To hide the email transcript option in the Zendesk chat menu, you need to implement a custom code snippet. By settingemailTranscript
tofalse
, the option will be hidden from customers. Here's the code you need to add: ```html <script…
The ability to hide the email transcript option in Zendesk chat depends on your subscription plan. Not all plans may support this feature directly through the widget settings. If you are on a Legacy Zendesk Chat account, the provided script might…
If the script to hide the email transcript option isn't working, it might be due to the version of Zendesk Chat you are using. Legacy accounts may not support this feature with the provided script. In such cases, the code is not intended for use…