Rmove fields from Advanced bug report page

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
thegisguy
Posts: 13
Joined: 09 Sep 2008, 19:22

Rmove fields from Advanced bug report page

Post 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.
thegisguy
Posts: 13
Joined: 09 Sep 2008, 19:22

Re: Rmove fields from Advanced bug report page

Post 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.
Afrank
Posts: 4
Joined: 27 Jan 2010, 19:01

Re: Rmove fields from Advanced bug report page

Post 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.
Post Reply