Trying to redirect Service Portal Header page to external URL.

jasonjones
Giga Contributor

Trying to update our Header Logo to redirect to an outside URL, but can't seem to find the code to do this.

find_real_file.png

find_real_file.png

Basically where the id=lcb_home, I want that to go to an outside link.  I have looked in the CSS, Widgets, and Page area and can't seem to locate where I can make this change.

Thanks.

Jason

1 ACCEPTED SOLUTION

It's there... see the two lines that include:

<a ... href="?id={{portal.homepage_dv}}"

Just change that to:

<a ... href="http://URL.com"

View solution in original post

5 REPLIES 5

We figured it out.  It is in the body of the code.

 

Basically changed the href reference on this line to our new external link.

 <a class="navbar-brand navbar-brand-logo" ng-if="::portal.logo" href="?id={{::portal.homepage_dv}}">

 <a class="navbar-brand navbar-brand-logo" ng-if="::portal.logo" href="https://business.uc.edu">

Thanks.

Jason