Page 1 of 1

Hiding elements of the Filters panel

Posted: 24 Jul 2014, 05:22
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

Re: Hiding elements of the Filters panel

Posted: 24 Jul 2014, 21:35
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.

Re: Hiding elements of the Filters panel

Posted: 31 Jul 2014, 14:27
by david_stephensen
Thanks once again, Atrol!