Is there a way to remove these views from the Group Root view?
How can I hide the "2 Days", "30 Days" and "365 Days" graphs on the group pages?
Votes:
0
17 Replies
Votes:
1
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.
Created on Dec 29, 2011 8:21:35 PM by
Dirk Paessler [Founder Paessler AG]
(11,025)
●3
●6
Last change on Mar 22, 2018 12:22:07 PM by
Brandy Greger [Paessler Support]
Votes:
0
Hello,
Someone can update the solution for version 14.2.9.1690 ? Because is doesn't work anymore after update.
Thank you.
Votes:
0
The code mentioned above is still working with 13/14 versions of PRTG (just tested latest Canary V14.x.11.x)
Votes:
0
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 :
I would like to use the free space in the red square.
Thank you.
Votes:
0
We will change this is one of our next releases
Votes:
0
@benoitpatin: No, we are still working on this. Sorry.
Votes:
0
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;
}
Votes:
0
Hello Paessler Team,
unfortunately this does not work for me on version 17.1.29.1427+ any hints?
Best Regards
Votes:
0
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
Votes:
0
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; }
- 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
Votes:
0
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
Votes:
0
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?
Votes:
0
Hi Michele,
Can you please copy and paste the URL to the page where you want to hide the field?
Cheers, Felix
Votes:
0
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
Votes:
0
Hi Michele,
Please try this one:
#overview-device .panel.col-panel.responsiveobjectoverview_panelB{ display: none; }
Best regards, Felix
Votes:
0
Great thanks this is working like a charm!
Add comment