cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
5392
Views
16
Helpful
3
Comments
Jason Kunst
Cisco Employee
Cisco Employee

I was asked on how to hide the Pending Accounts and Notices Tabs at the top of the page in the Sponsor Portal.

 

The customer in this example didn't want to show the unused buttons to their users.

 

I had some code already for the pending accounts but didn't have the info for the Notices tab. The attached video shows how I injected the code and also found out what element was used for notices. This same concept for finding the elements would be used on any of the pages.

 

Use How To: ISE Web Portal Customization Options as a reference on how to work with the different customization options. This script was put under Create Account for known guests Portal page customization Instructional Text mini-editor

 

<script>

(function(){

   $(document).ready(function() {

                $(".ui_approve_accounts_button").hide();

               $(".ui_notices_button").hide(); 

   });

})();

</script>

 

To only hide the Pending Accounts List view and the Pending Accounts Details view. (remove the jQuery for notices_button)

3 Comments
Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: