Interested in a ServiceNow event built for developers? Registration for now[dev]26 is officially open!

How to hide the platform analytics advertisement on legacy dashboards??

paulciarfel
Tera Expert

Is there a way to hide this message on the legacy dashboards page?  I do not want to advertise Platform Analytics until we have a program to migrate people.

pciarfellapki_0-1759179369440.png

I can't find a property or a setting to disable it.

3 REPLIES 3

Curtis_Myers
Tera Expert

Set com.glide.par.coreui_single_migration.enabled to false will hide it on the dashboards

BrainyCowgirl
Tera Contributor

I was able to follow instructions from Zurich Patch 8 Release notes in PRB1989067 as outlined below and it worked for me. It may depend on what version your instance is currently on. 

BrainyCowgirl_0-1777602727899.png

Here's the link and you can CTRL + F for the problem record to find it faster if the image is giving you any issues: Zurich Patch 8 • Zurich Release Notes • Docs | ServiceNow

 

For our platform, I also needed to follow instructions on how to remove that banner from the report home page, so you may want to check and see if you see it there also as outlined in this Support KB article: It's possible to hide info message: 'If you can't find the report you're looking for, try the Platfo...

Ashley
Mega Sage

 

Good afternoon,

Unfortunately, these solutions did not work for me when trying to hide the banner in the Reports View / Run module.

I had to create a UI Script to hide it instead:

Name: Hide Platform Analytics Banner
UI Type: Desktop
Global: True
Active: True

Script:

addLoadEvent(function() {
    var banner = document.querySelector('.information-banner-dashboard-overview');
    if (banner) {
        banner.style.display = 'none';
    }
});


I hope it helps someone in the future.

Kind Regards
Ashley