How to hide the Home Page Icon from the MDM UI

How to hide the Home Page Icon from the MDM UI

book

Article ID: KB0079758

calendar_today

Updated On:

Products Versions
TIBCO MDM 9.x

Description

Home icon is displayed only for the administrator and data steward roles. Other users can define the home page by using the Profile Settings option. So, if user has the one of the role while building user profile then that user can use this code in custominit.html file to hide the home icon.
 

Issue/Introduction

How to hide the Home Page Icon from the MDM UI

Environment

Product: TIBCO MASTER DATA MANAGEMENT Version: All supported versions OS: All Supported Operating Systems

Resolution

-Create customInit.html file in 'Enterprise folder' under 'htmlprops',if it doesn't exist.
-Open that file and write below code:

<SCRIPT type="text/javascript">

function customInit(){

try
{

        var divconfigure = document.getElementById("homePage");
            divconfigure.style.display = 'none';
   
   
    
    
     
}     catch(eee){console.log(eee.message);}

}

</script>

-save the above file and just refresh the page. It will automatically reflect the changes.