How to change the buttons or add buttons to on the user interface on the Portal customization ? I wanna add the on boarding buttons and take away the service catalog I already look at the code not sure where to add it.
Page 1 / 1
Hi Robyn,
if you want to add this any navbar link on your user portal.
1) you need to go on your customization portal and there is show you "header" part you can add this any button there fields.
if you want any help please contact us our email:-info@helpdesktheme.com
Thanks
support team
(Experts in freshdesk & freshservice theme & customization)
You can customize your navigation in your header, i got this:
<nav class="page-tabs">
<div class="navmenu">
<div class="page no-padding {% if portal.is_not_login_page %}no-header-tabs{% endif %}">
{% if portal.current_tab\ == "tickets" %}
<a class="nieuwe-ticket show-in-mobile" href="/en/support/tickets/new">
<b class="nieuwe-ticket">New ticket</b></a>
{% endif %} {% if portal.tabs.size > 0 %}
<button class="menu-toggle show-in-mobile"></button>
<script id="rendered-js">
jQuery("button").on("click", function () {
jQuery("body").toggleClass("open-body");
});
</script>
<nav class="stroke hide-in-mobile">
<ul>
<li style="list-style: none">{% for tab in portal.tabs %} {% if tab.url %}</li>
<li>
<a class="{% if tab.tab_type == portal.current_tab %}active{% endif %}" href="{{tab.url}}">{{ tab.label }}</a>
</li>
<li style="list-style: none">{% endif %} {% endfor %}</li>
</ul>
</nav>
</div>
</div>
</nav>
Sign in to the Community
No account yet? Create an account.
Social Login
Login for Freshworks Employees Login with LinkedInor sign up below
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.