Is there a way to remove these views from the Group Root view?


Article Comments

Important note: The current customization approach is unsupported and deprecated as of versions 17.3.34/17.4.35. This customization no longer works. For more details, see How can I re-brand and customize the PRTG web interface using CSS and Javascript?

PRTG Version 15.2.14 through 17.3.33

Please find the file

styles_custom.css

in the

/webroot/css

folder, open it in a text editor, paste the following code into it, and save the file:

#group-overview .panel.fix-panel{
      display: none;
}

Note: This will also hide Geo Maps. You can manually disable Geo Maps under System Administration—User Interface in the PRTG web interface.

PRTG Version 13.2.3.x and later (tested with 14.x.11)

Please find the file

styles_custom.css

in the

/webroot/css

folder, open it in a text editor, paste the following code into it, and save the file:

div#objecttreecontainer ~ .ui-layout-east {width:0!important;}

Now perform a full reload (Shift-F5) in your browser.

This will remove the graphs on the group and probe level and you will have more space for the device tree.


PRTG Version 13.2.2.x and before

Please find the file

customerscripts.js in the

/website/javascript

folder, open it in a text editor, paste the following code into it, and save the file:

$(document).ready(function() 
{
	$('#tab-1[loadurl*="groupoverview"] td.col2').remove();
});

Now perform a full reload (Shift-F5) in your browser.

This will remove the graphs on the group and probe level and you will have more space for the device tree.


Dec, 2011 - Permalink

Hello,

Someone can update the solution for version 14.2.9.1690 ? Because is doesn't work anymore after update.

Thank you.


Apr, 2014 - Permalink

The code mentioned above is still working with 13/14 versions of PRTG (just tested latest Canary V14.x.11.x)


Apr, 2014 - Permalink

I was not using the default styles_custom.css. So i get back the original file and add the modification and it works.

Do you think it's also possible to modify css to use the bottom of the page ? See my picture : http://s28.postimg.org/89hhc92wt/20140507_103411.jpg

I would like to use the free space in the red square.

Thank you.


May, 2014 - Permalink

We will change this is one of our next releases


May, 2014 - Permalink

Hi

Any update for this change ?

Thx


Jul, 2014 - Permalink

@benoitpatin: No, we are still working on this. Sorry.


Jul, 2014 - Permalink

We changed the layout so you have to use the following CSS rule in your style_custom.css

#group-overview .panel.fix-panel{ display: none; }


Jun, 2015 - Permalink

Hello Paessler Team,

unfortunately this does not work for me on version 17.1.29.1427+ any hints?

Best Regards


Mar, 2017 - Permalink

Dear Michele,

I just tested it with the code mentioned by Stefan's post:

#group-overview .panel.fix-panel{
  display: none;
}

and it's still working. Did you clear your browser cache after changing the .css file?

Best regards, Felix


Mar, 2017 - Permalink

strange thing, since nothing change here

....[cut] .map_iconcolornew_hasack, .map_iconcolornew_senso { background: url(/mapicons/iconset7/Custom_red.png) no-repeat; background-size:contain; }

  1. group-overview .panel.fix-panel{ display: none; }

so I just added this part to the file at the end. firefox/IE both with cache clear and restart


Mar, 2017 - Permalink

Hi Michele,

The styles_custom.css is not loaded if there is any syntactical error. Please rename this file and create a new file with the same name. Just copy and paste the syntax of my previous answer and see if the graphs are removed. If this works, you can start to add the other changes to the .css-file one after another to see which settings prevent the changes.

Best regards, Felix


Mar, 2017 - Permalink

Hello Felix,

maybe this was my fault. in Group Views, I dont see this anymore. So it seems to work yeah

is it also possible to remove it in Device View?


Mar, 2017 - Permalink

Hi Michele,

Can you please copy and paste the URL to the page where you want to hide the field?

Cheers, Felix


Mar, 2017 - Permalink

for example this one: https://prtg/device.htm?id=44947&tabid=1

this is a device Point of view instead of a Group Point of view.

thanks already for the support


Mar, 2017 - Permalink

Hi Michele,

Please try this one:

#overview-device .panel.col-panel.responsiveobjectoverview_panelB{
  display: none;
}

Best regards, Felix


Mar, 2017 - Permalink

Great thanks this is working like a charm!


Mar, 2017 - Permalink