09-05-2019 08:23 AM
Solved! Go to Solution.
09-09-2019 12:15 PM
09-10-2019 06:52 AM
Try this out for the Self-reg success page:
Please try the below script in Self-Registration Success page > Optional Content 2.
<script> $(document).on("pageshow", function(){ $('.ui_self_reg_results_username_label').remove(); $('.ui_self_reg_results_password_label').remove(); }); </script>
In the same page right side top corner, username is displayed. If it is required to remove that as well, then please use the below script.
<script> $(document).on("pageshow", function(){ $('.ui_self_reg_results_username_label').remove(); $('.ui_self_reg_results_password_label').remove(); $('.ui-btn-right').remove(); }); </script>
09-05-2019 11:23 AM
Do you have the code I would need to put in the Optional Content 2 box to hide the Username and Password prompts along with the values for each? This is on the Self-Registration Success Page on the Self-Registered Guest Portal. These two fields are minimally required in order to save the portal after editing and I do not need to have them displayed on the page.
09-05-2019 12:18 PM
09-05-2019 12:35 PM
I attached the screen flow in a Word doc to this post. I did check the options under http://cs.co/ise-guest and could not find one that shows me how to not display text strings and/or variables on pages.
09-06-2019 08:23 AM
09-06-2019 08:30 AM
09-09-2019 09:24 AM
I am not concerned with the screen flow; it is fine. I want to be able to hide the username and password text strings and their values on the Account Created (i.e. Self-Registration Success) screen (the third screen on the attached Word document). I just need the code to copy into the ISE Optional Content 2 box for the Self-Registration Success screen on the Guest Portal Page Customization screen to allow this to occur.
09-09-2019 12:15 PM
09-09-2019 12:25 PM
No, I am not sure you do yet. I want to be able to hide the username and password text strings and their values on the Account Created (i.e. Self-Registration Success) screen (which is the third screen on the attached Word document, not the login screen). I just need the code to copy into the ISE Optional Content 2 box for the Self-Registration Success screen on the Guest Portal Page Customization screen to allow me to hide these four items. I can not simply remove them from the ISE portal modification screen as there is an edit in place that forces you to have these two items, at a minimum, included.
09-09-2019 01:18 PM
09-10-2019 06:52 AM
Try this out for the Self-reg success page:
Please try the below script in Self-Registration Success page > Optional Content 2.
<script> $(document).on("pageshow", function(){ $('.ui_self_reg_results_username_label').remove(); $('.ui_self_reg_results_password_label').remove(); }); </script>
In the same page right side top corner, username is displayed. If it is required to remove that as well, then please use the below script.
<script> $(document).on("pageshow", function(){ $('.ui_self_reg_results_username_label').remove(); $('.ui_self_reg_results_password_label').remove(); $('.ui-btn-right').remove(); }); </script>
09-11-2019 07:14 AM
That solved my issue. Thanks so much for your assistance with this.
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