You want to bypass the 'Try to continue logging in' prompt during Self-Service Actions, automatically proceeding to the next step during Challenge Question, Phone, and/or Email Enrollment.
Update the 'pg_custom.js' file with the appropriate function to skip this intermediate screen.
C:\inetpub\PortalGuard\_layouts\images\PG\js\pg_custom.js
if (SS_ACTION_ENROLL_CHAL == ssaction || SS_ACTION_ENROLL_PHONE == ssaction || SS_ACTION_ENROLL_EMAIL == ssaction) {
if (bSubmit){
submitFromSS();
} else {
closePopup("popup_SS", false, (g_bPGClient || g_bSideCar ? true: false), PG_AUTHTYPE_LOGIN);
}
return "";
} else {
ret += "<br /><a href='javascript:" + (bSubmit ? "submitFromSS()" : "closePopup(\"popup_SS\", false, " + (g_bPGClient || g_bSideCar ? "true": "false") + ", PG_AUTHTYPE_LOGIN)") + "'>Try to continue logging in</a>";
}
REV. 08/2018 | PortalGuard