02-07-2019 05:59 AM
Dear all,
Is anyone able to tell/advice me how to change behavior or "built-in" URL link called "Please read the terms and conditions." so it is not redirected to ISE built-in page but to my specific location (dedicated web server running IIS,...)? I'd like to simply have someone clicks on "built-in" URL to be redirected to my own URL "myurl.com" hosting Terms and Conditions.
Only what I can do is to add link on built-in page which is one additional click which seems to be not a very user friendly.
Thanks a lot for any hint.
Martin
Solved! Go to Solution.
02-11-2019 07:41 AM - edited 02-21-2019 04:46 AM
Perhaps I need more information on how this would work for you. Can you please ellaborate?
Please try to add the below script in Login Page of Customization and let us know whether it works as expected.
Please use the below script for Login, Self Registration and Self Registration Success pages.
Ex: Page Customization > Login > Optional Content 2
Please replace the google.com with respective URL .
<script> setTimeout(function() { $('a').each(function(){ if($(this)[0].text.toLowerCase().indexOf("terms and conditions") !== -1){ $(this).attr('href', 'https://www.google.com').attr('target','_blank'); } }) }, 1000); </script>
02-07-2019 07:35 AM
02-07-2019 10:18 AM
Hi Jason,
It might be working. Do you have such script and guide to which content field it should be added?
Thanks for an update.
Just simple thing but it is not built-in within ISE, so javascript might be only option.
Martin
02-07-2019 10:39 AM
02-11-2019 07:41 AM - edited 02-21-2019 04:46 AM
Perhaps I need more information on how this would work for you. Can you please ellaborate?
Please try to add the below script in Login Page of Customization and let us know whether it works as expected.
Please use the below script for Login, Self Registration and Self Registration Success pages.
Ex: Page Customization > Login > Optional Content 2
Please replace the google.com with respective URL .
<script> setTimeout(function() { $('a').each(function(){ if($(this)[0].text.toLowerCase().indexOf("terms and conditions") !== -1){ $(this).attr('href', 'https://www.google.com').attr('target','_blank'); } }) }, 1000); </script>
02-19-2019 05:24 AM
Hi Jason,
Thanks a lot, it seems to be working, but only in first page called "Login", but Terms and Condition link is also available during self-registration process and therefore on page called "Self-Registration" & "Self-Registration Success" and there code doesn't work if apllied in Optional content 2.
Is there a difference which can be adjusted to be applied there as well?
Thanks for hint.
Martin
02-19-2019 07:29 AM
02-22-2019 02:38 AM
02-23-2019 11:37 AM
02-25-2019 12:19 AM
Hi Jason,
It's working like a charm! Thanks a lot for your prompt help!
Have a nice week.
Martin
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide