How to Hide create dashboard version button from homepage setting icon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-12-2018 05:47 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2018 01:19 AM
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){}
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2018 02:20 AM
Apart from UI Script, is there any other way to hide the button?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2018 02:29 AM
The above UI Script works fine. As we are using domain separated instance, is there any better solution other than UI Script?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2018 02:43 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2018 02:53 AM
Thanks Vignesh for your quick response..... if u get to know any other solutions,please suggest.