When adding the widget code to our internal site and another test site, the widget was not displayed. It did only display the 'Contact' button but nothing else.
Any idea why this might be happening?
Hello Gerardo,
Welcome to Atlassian Community!
When using the widget, it will show only the button and customers will have to click on it to show the text box. When they search for something, it will appear the request types for them to create tickets.
Can you please let us know if it shows anything when clicking on it?
Is it showing any error on the widget's page when you enable or save it?
Regards,
Angélica
Hi Angélica,
Thanks for your reply. I was able to add the widget, however, I am now wondering if it's possible to change the behavior so the help desk widget is open all the time instead of clicking on the button to open it.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the details, Gerardo.
There is a workaround to make the widget open automatically.
<script add your widget script here </script>
<script type="text/javascript">
setTimeout(()=>{
//gets the iframe on which the widget is embedded
let iframe = document.querySelector('#jsd-widget');
//gets the content of the iframe
let iframeContent = iframe.contentDocument;
//gets button which opens the widget
button = iframeContent.querySelector('#help-button');
button.click();
}, 1000)
</script>
Please, give it a try and let us know how it goes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.