Change Help URL on Web Portal

Which IIQ version are you inquiring about?

Version 8.4

Please share any images or screenshots, if relevant.

help.jpg


Share all details related to your problem, including any error messages you may have received.

Is there a way to change the URL of the help icon on the main page on the web portal?

Currently it redirects to the iiqlangingpage.htm which is in the deployed war file, but we want to redirect it to a local sharepoint site.

I think this is ootb and is hardcoded , if you want to add you doc pretty much you need to add the installer doc directory .

if you want to add the external URL , you can do that using plugin , we have done similar .
image

Hi @lweisz,

As @vishal_kejriwal1 mentioned it is OTB. But if you want to change it you can change the below line in menu.xhtml file from this

          <a href="#" role="menuitem" class="menuitem"
            onclick="SailPoint.launchHelp(CONTEXT_PATH, helpKey); return false;">

to

          <a href="<YOUR_URL>" target="_blank" role="menuitem" class="menuitem">
2 Likes

@lweisz
The solution which is provided by @Jarin_James works; however it opens the url in new tab.
To open the url in new window, you can add below script and use it in the onclick tag.

<script type="text/javascript">
    function openInNewWindow(url) {
            window.open(url, '_blank', 'noopener,noreferrer,width=600,height=400');
        }

  </script>

refer the script in the below tag.

<a href="#" role="menuitem" class="menuitem" onclick="openInNewWindow('https://www.google.co.in'); return false;">
<i role="presentation" aria-hidden="true" class="fa fa-question-circle fa-lg"></i>
   <span aria-label='#{sp:localizeKey("menu_label_help")}'/>
</a>

Thanks for the quick solution, it’s working.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.