Category / Section
How to Add Third Party Scripts to the Customer Portal?
Published:
The custom JS option allows you to add the third party live chat widget to your BoldDesk customer portal. Go to Admin > Customer Portal > Customization and paste the following custom JS code.
Custom JS code
const script = document.createElement("script");
script.src = `{{yourscript}}`;
document.head.appendChild(script);
You can add your chat script in the place of {{yourscript}}.
We support only trusted domains to the customer portal. If your script is not executed or blocked by CSP policies, kindly contact us via support@bolddesk.com.
Pasting the custom JS codes
To learn where to paste the above custom JS codes, refer to this article.