Articles in this section
Category / Section

How to Add an External Website Link to the Customer Portal

Published:

You can include your website link in the BoldDesk customer portal using the custom JS option.

To do so, go to Admin > Customer Portal > Customization and paste the following custom JS code.

Custom JS code

var myWebsite = document.createElement('a');
myWebsite.classList.add("ticket-support", "cursor-pointer", "ellipsis", "no-wrap", "font-500", "ml-3");
myWebsite.target = '_blank';

myWebsite.href='https://www.bolddesk.com';
myWebsite.innerText = 'My Website';

document.querySelector('.header-title').appendChild(myWebsite); 

Note: The above URL and website name are just examples. You can replace them with your website URL and name.

Pasting the custom JS codes

To learn where to paste the above custom JS codes, refer to this article.

Before customization

Before.png

After customization

After.png

Related article

Restrict Agents Ticket Creation in Customer Portal

Was this article useful?
Like
Dislike
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied