What is this?

This knowledgebase contains questions and answers about PRTG Network Monitor and network monitoring in general.

Learn more

PRTG Network Monitor

Intuitive to Use. Easy to manage.
More than 500,000 users rely on Paessler PRTG every day. Find out how you can reduce cost, increase QoS and ease planning, as well.

Free Download

Top Tags


View all Tags

How to remove footer in maps? Can I customize the maps footer?

Votes:

0

We use PRTG maps to run on a large screen in our office for support uses. After we updated to the latest version we got scroll bars and a PRTG footer in our maps.

We are using the iframes with a refresh timer in Google Chrome to switch from 1 map to another in a circle. Before the update the iframes fit perfectly for the screen(1900x1050).

We've looked the .htm files through both the pagefooter, htmlfooter and the mapshow files. But we cannot locate where we can remove the text.

Can you help?

css customize footer javascript look-and-feel maps prtg rebranding surveillance

Created on Aug 29, 2012 11:28:57 AM

Last change on Jan 17, 2014 2:28:51 PM by  Gerald Schoch [Paessler Support]



Best Answer

Accepted Answer

Votes:

0

This article is no longer supported, for reasons outlined in What is your position towards customizing the PRTG web interface?.

Removing or Customizing the Footer in Maps

If you want to hide the PRTG branding in the footer of your PRTG maps, or if you want Maps to carry your own branding there, please follow the steps below:

(1) Remove PRTG Branding from Maps

  1. Go to the /webroot/css subfolder of your PRTG installation.
  2. Open the file styles_custom.css with an editor (if this file is missing so far, just create it manually).
  3. Add the following code to the file: body.mapshow .prtgmapfooter{display: none;}

This will remove the original PRTG footer from your Maps. If you want to show your own text there, go on with the next step.

(2) Customize the Footer in Maps

  1. Remove the original footer as described above.
  2. Go to the /webroot/javascript subfolder of your PRTG installation.
  3. Open the file scripts_custom.js with an editor (if this file is missing so far, just create it manually).
  4. Add the following code to the file: $(function(){ $('body.mapshow .prtgmapfooter').html('<div>ANY text you want</div>').show(); })

The text you enter in the div tag will then show up as footer in your maps.

Custom Footer
The Customized Footer as Given in the Code Example

Note: You might have to reload the page with the Map with F5 to show your customization. The article applied to PRTG Network Monitor 13.2.3 until 18.2.xx.

Created on Jan 17, 2014 2:21:41 PM by  Gerald Schoch [Paessler Support]

Last change on Feb 26, 2019 10:01:24 AM by  Torsten Lindner [Paessler Support]



10 Replies

Votes:

0

Important: The following approach is deprecated as of PRTG version 13.2.3!


Hi,
to remove the footer, please search the file
<PRTG Install Directory>\website\javascript\customerscripts.js
andjust add the following code:

$(function() {
    if($("body>div").last().attr("style") === "font-size:9px") {
        $("body>div").last().remove();
    }
});

For public Maps please use the following instead

$(function() {
  $('div[style="font-size: 9px; position: absolute; bottom: 0px;"]').remove();
});

That should do the trick.
Best regards

Created on Sep 3, 2012 8:20:28 AM by  Konstantin Wolff [Paessler Support]

Last change on Jan 17, 2014 2:25:10 PM by  Gerald Schoch [Paessler Support]



Votes:

0

This code already exists in the customerscripts.js, so unfortunately this didn't do the trick. I am not able to link pictures here, so i'm unable to show you what i am talking about.

The footer just says: PRTG Network Monitor 12.3.3.2855, Network Monitoring Software C 2012 Paessler AG. Servertime 03-09-2012 13.46.45(UTC +01:00)

Created on Sep 3, 2012 11:47:14 AM



Votes:

0

Hi,
please send your customerscript.js and also screenshots showing the maps to [email protected] . Do you have performed further modifications on the webgui of PRTG?

Created on Sep 3, 2012 1:15:03 PM by  Konstantin Wolff [Paessler Support]



Votes:

0

Hi,

I have the same problem. The footer says PRTG Network Monitor 13.1.1.1088 , Network Monitoring Software © 2012 Paessler AG, Serverzeit: 14.03.2013 23:23:08 (UTC+01:00) and there are vert. and horiz. scroll bars although the map is half of the shown space. The customerscript.js is adapted like posted above. No other modifications were performed on the webgui. is there a solution to eliminate the scroll bars?

Created on Mar 14, 2013 10:30:20 PM



Votes:

0

Hi,

I have the same problem. The customerscript.js is adjusted like above, and no other modifications were made.

How can I remove the footer?

br

Created on Mar 15, 2013 8:45:45 PM



Votes:

0

@AustriaWien: please send a screenshot of the map you are seeing the scrollbars to [email protected]. Please attach the customerscript.js as well.

Created on Mar 18, 2013 1:02:17 PM by  Konstantin Wolff [Paessler Support]



Votes:

0

since Version 13.2.3.1896/1897 and later that includes the HTM rewrite of the web interface you hat to do this

in the file <PRTG installation>\webroot\css\styles_custom.css

add

.mapshow .prtgmapfooter { display: none; }

Created on Apr 25, 2013 1:10:23 PM by  Aurelio Lombardi [Paessler Support]



Accepted Answer

Votes:

0

This article is no longer supported, for reasons outlined in What is your position towards customizing the PRTG web interface?.

Removing or Customizing the Footer in Maps

If you want to hide the PRTG branding in the footer of your PRTG maps, or if you want Maps to carry your own branding there, please follow the steps below:

(1) Remove PRTG Branding from Maps

  1. Go to the /webroot/css subfolder of your PRTG installation.
  2. Open the file styles_custom.css with an editor (if this file is missing so far, just create it manually).
  3. Add the following code to the file: body.mapshow .prtgmapfooter{display: none;}

This will remove the original PRTG footer from your Maps. If you want to show your own text there, go on with the next step.

(2) Customize the Footer in Maps

  1. Remove the original footer as described above.
  2. Go to the /webroot/javascript subfolder of your PRTG installation.
  3. Open the file scripts_custom.js with an editor (if this file is missing so far, just create it manually).
  4. Add the following code to the file: $(function(){ $('body.mapshow .prtgmapfooter').html('<div>ANY text you want</div>').show(); })

The text you enter in the div tag will then show up as footer in your maps.

Custom Footer
The Customized Footer as Given in the Code Example

Note: You might have to reload the page with the Map with F5 to show your customization. The article applied to PRTG Network Monitor 13.2.3 until 18.2.xx.

Created on Jan 17, 2014 2:21:41 PM by  Gerald Schoch [Paessler Support]

Last change on Feb 26, 2019 10:01:24 AM by  Torsten Lindner [Paessler Support]



Votes:

0

Sorry. This is pretty simple, but it still displays the footer.

My styles_custom.css file reads: body.mapshow .prtgmapfooter { display: none; }

I am running 18.1.37.12158.

Any ideas?

Created on Feb 16, 2018 9:08:43 PM



Votes:

1

Hi there,

Could you try adding the following to the "styles_custom_v2.css", please note the V2 as only this will work in the facelift:

.mapshow .prtgmapfooter {display: none !important;}

Best regards.

Created on Feb 19, 2018 11:44:04 AM by  Dariusz Gorka [Paessler Support]




Disclaimer: The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.