To add a link to your website on the Zendesk help center home page, you need to modify the HTML of your help center theme. Start by opening the page template of your help center and navigate to the Header page (header.hbs) tab.
Insert the following HTML code below the line<ul class="user-nav-list">
, making sure to replacewww.yoursite.com
with your actual website URL, includinghttps://
:
<a href="https://www.yoursite.com" target="_blank">Go to the website</a>
After adding the code, click Save. This will display the link on your help center's home page. For more details, you can refer to theoriginal Zendesk help article.
To add a website link to your Zendesk help center, you need to use a simple HTML anchor tag. Open the Header page (header.hbs) of your help center theme and insert the following code below the line<ul class="user-nav-list">
: ```html <a…
To insert the HTML code for adding a link in your Zendesk help center, you need to access the Header page (header.hbs) of your help center theme. Locate the line<ul class="user-nav-list">
and place your HTML code right below it. The code should…
While you can use JavaScript or CSS for various customizations, adding a simple link to your Zendesk help center home page is best done using HTML. The process involves editing the Header page (header.hbs) of your help center theme and inserting an…