Editing information in the page view_all_bug_pages page.

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
pdelcot
Posts: 17
Joined: 13 Sep 2013, 08:40

Editing information in the page view_all_bug_pages page.

Post 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
Attachments
2019-04-25_111007.jpg
2019-04-25_111007.jpg (73.82 KiB) Viewed 6116 times
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Editing information in the page view_all_bug_pages page.

Post 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.
Please use Search before posting and read the Manual
cas
Posts: 1586
Joined: 11 Mar 2006, 16:08
Contact:

Re: Editing information in the page view_all_bug_pages page.

Post 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
pdelcot
Posts: 17
Joined: 13 Sep 2013, 08:40

Re: Editing information in the page view_all_bug_pages page.

Post 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
cas
Posts: 1586
Joined: 11 Mar 2006, 16:08
Contact:

Re: Editing information in the page view_all_bug_pages page.

Post 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;
pdelcot
Posts: 17
Joined: 13 Sep 2013, 08:40

Re: Editing information in the page view_all_bug_pages page.

Post by pdelcot »

Ok thanks, that's what i did
Post Reply