Page 1 of 1

Rmove fields from Advanced bug report page

Posted: 15 Sep 2008, 15:29
by thegisguy
All:

How would I go about removing some of the default fields from the advanced bug report page (have turned off the basic report page)? For my purposes things like OS version, and Build number aren't needed. I installed the MyReport 0.3.0 plug in, and removed the fields I didn't want using that application, but it's didn't actually change my advanced report page.

Is there a simple way to do what I want?

Thanks in advance.

Re: Rmove fields from Advanced bug report page

Posted: 17 Sep 2008, 15:15
by thegisguy
I post this in case anyone else is interested...

I was able to remove the un-needed fields by simply deleting them from the HTML table. This seems to work, and placed empty values in the deleted fields.

Re: Rmove fields from Advanced bug report page

Posted: 01 Feb 2010, 14:20
by Afrank
I just hid the fields in the strings_english.txt file.

Basically just place a # in front of the lines you don't want to show.

example:

# view_bug_advanced_page.php
$s_view_simple_link = 'View Simple';
$s_viewing_bug_advanced_details_title = 'Viewing Issue Advanced Details';
#$s_product_build = 'Product Build';
$s_system_profile = 'System Description';
$s_update_bug_button = 'Update Issue';


Not the best way to do it but it is probably the fastest.