Support Article
Favicon icon does not display for change password screen
SA-57857
Summary
Favicon icon does not display for the 'Change your password' screen. This occurs when logging in for the first time.
Error Messages
Not Applicable
Steps to Reproduce
Log in for the first time.
Root Cause
A defect in Pegasystems’ code or rules. In the pyChangePassword harness, the pyPortalIcon HTML fragment responsible for the Favicon icon is not present. The HTML fragment is not generated in the markup.
Resolution
Perform the following local-change:
Add the below code in the the pyChangePasswordIncludes non-auto section:
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = 'images/pzPegaIcon.ico';
document.getElementsByTagName('head')[0].appendChild(link);
Published July 23, 2018 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.