How to Hide create dashboard version button from homepage setting icon

Shri8
Tera Contributor

find_real_file.png

10 REPLIES 10

This global ui script works for me

addLoadEvent(function(){

try{
var id = document.getElementById('createDashboardVersionMenu');
if (id){
document.getElementById('createDashboardVersionMenu').style.display = "none";
}
}catch(e){}

});

Shri8
Tera Contributor

Apart from UI Script, is there any other way to hide the button?

Shri8
Tera Contributor

The above UI Script works fine. As we are using domain separated instance, is there any better solution other than UI Script?

 

I dont think we have any other solutions other than this, you can add conditions in the script to make it work for specific domains.

Thanks

Shri8
Tera Contributor

Thanks Vignesh for your quick response..... if u get to know any other solutions,please suggest.