Hiding elements of the Filters panel

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
david_stephensen
Posts: 44
Joined: 05 Sep 2012, 04:37

Hiding elements of the Filters panel

Post by david_stephensen »

There are some elements of the Filters panel that we don't use. How could I hide them? I can't find Configuration options for this. I am happy to just comment them out if I can find them. What files should I look in?

Examples: Platform, OS, OS Version, Profiles, Priority, Tags, Sticky Issues -- We run a really simplified system!

Thanks for your help
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Hiding elements of the Filters panel

Post by atrol »

Add the following lines to file config_inc.php to get rid of Platform, OS, OS Version, Profiles and Tags (but not only on filter page)

Code: Select all

$g_enable_profiles = OFF;
$g_tag_view_threshold = NOBODY;
You have to change function filter_draw_selection_area2 in file core/filter_api.php to get rid of the other fields.
Please use Search before posting and read the Manual
david_stephensen
Posts: 44
Joined: 05 Sep 2012, 04:37

Re: Hiding elements of the Filters panel

Post by david_stephensen »

Thanks once again, Atrol!
Post Reply