We use Fresh Desk for our ticketing system for both our employees and clients and have used it across several sites. We use the widget code to add a support tab (example below).
The problem is, I added it to the main.html and while the tab will show for a split second it is gone when the app loads. I have tried a few other places, but it seems to get wiped out no matter what. Is there a way or place to add custom scripts like this so that it will get loaded and show the tab?
<script type="text/javascript" src="https://s3.amazonaws.com/assets.freshdesk.com/widget/freshwidget.js"></script>
<script type="text/javascript">
FreshWidget.init("", {"queryString": "&widgetType=popup&screenshot=no&searchArea=no&res ponsive=no", "utf8": "✓", "widgetType": "popup", "buttonType": "text", "buttonText": "Support", "buttonColor": "black", "buttonBg": "#f1f1f1", "alignment": "3", "offset": "300px", "formHeight": "500px", "screenshot": "no", "responsive": "no", "url": "https://helpdeskurl.removed"} );
</script>
The problem is, I added it to the main.html and while the tab will show for a split second it is gone when the app loads. I have tried a few other places, but it seems to get wiped out no matter what. Is there a way or place to add custom scripts like this so that it will get loaded and show the tab?
<script type="text/javascript" src="https://s3.amazonaws.com/assets.freshdesk.com/widget/freshwidget.js"></script>
<script type="text/javascript">
FreshWidget.init("", {"queryString": "&widgetType=popup&screenshot=no&searchArea=no&res ponsive=no", "utf8": "✓", "widgetType": "popup", "buttonType": "text", "buttonText": "Support", "buttonColor": "black", "buttonBg": "#f1f1f1", "alignment": "3", "offset": "300px", "formHeight": "500px", "screenshot": "no", "responsive": "no", "url": "https://helpdeskurl.removed"} );
</script>
Comment