Page 1 of 1

Disable Page Tour ETA

Posted: Thu Mar 16, 2017 5:47 pm
by fleish
There was a previous topic about this https://support.nagios.com/forum/viewto ... 7&t=42638 but it's since been locked. Can we get an ETA for disabling the annoying page tour popup? I'd prefer my browser not keep making superfluous calls to youtube every time I load a page. Thanks!

Re: Disable Page Tour ETA

Posted: Thu Mar 16, 2017 7:23 pm
by dwhitfield
Getting it out of the C will require recompiling, but you can just comment it out of the php files listed at https://github.com/NagiosEnterprises/na ... &q=youtube

Re: Disable Page Tour ETA

Posted: Thu Mar 23, 2017 4:16 am
by renrom
What i did was comment out the section vidbox.prototype.init = function() in nagios/share/js/nag_funcs.js

Code: Select all

vidbox.prototype.init = function()
{
}
And comment out the rest of the function.

I know, its quick and dirty, but this would be nice to be configurable in the nagios.cfg like 'enable_page_tour=1' :)

Re: Disable Page Tour ETA

Posted: Thu Mar 23, 2017 9:01 am
by dwhitfield
I had assumed there was a "formal" feature request for this, but it turns out there wasn't one on the github. I have corrected this: https://github.com/NagiosEnterprises/na ... issues/352

Re: Disable Page Tour ETA

Posted: Fri Mar 24, 2017 10:32 am
by jfrickson
There is a "Never show this again" link at the top-right of the open window. It sets a cookie in your browser telling it to not load that popup window again. It's a per-page cookie, so you would have to click it on each page that has the tour window.

I'll probably add a preference, but that should do the job for you in the meantime.