Page 1 of 1

Editing information in the page view_all_bug_pages page.

Posted: 25 Apr 2019, 09:11
by pdelcot
Hello,

I would like to delete for the users the information concerning the profile, the platform, the OS as well as the tags in the page viex_all_bug_pages in the filters. How can we do?
Thank you

Re: Editing information in the page view_all_bug_pages page.

Posted: 25 Apr 2019, 09:21
by atrol
Do you want to remove those fields just from filter?
If so, there is no configuration option for it and you would have to change source code to get what you want.

Re: Editing information in the page view_all_bug_pages page.

Posted: 25 Apr 2019, 09:43
by cas
In case you do not want to see them, you can use this setting:
/**
* Enable Profiles
* @global integer $g_enable_profiles
*/
$g_enable_profiles = ON;
Also you can enable individual fields check out config_defaults_inc.php
Adjustments to be made in config/confic_inc.php

Re: Editing information in the page view_all_bug_pages page.

Posted: 25 Apr 2019, 13:13
by pdelcot
I just want do remove this filter to te web page : view_all_bug_pages page;

I put the lines :
/**
* Enable Profiles
* @global integer $g_enable_profiles
*/
$g_enable_profiles = ON;

into my config_inc.php files, but no result. The filters are always visible

Re: Editing information in the page view_all_bug_pages page.

Posted: 25 Apr 2019, 13:36
by cas
@pdelcot, only on the filter page, as already mentioned by Atrol, is not available. That would require adjustment of the source code.
You can disable profiles in full but then you need to set it to|:
$g_enable_profiles = OFF;

Re: Editing information in the page view_all_bug_pages page.

Posted: 25 Apr 2019, 14:49
by pdelcot
Ok thanks, that's what i did