Customize Report Issue

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
AmelJan
Posts: 4
Joined: 02 May 2007, 14:00

Customize Report Issue

Post by AmelJan »

Hello

i would like to customize my report issue. I have already add custom fields , so i have all fields what i want. But i want to delete some fields, like "category" "additional informations". I would want too to have some custom fiels in my issue, but who can't be enter in report issue.

Scuse me for my english...
AmelJan
Posts: 4
Joined: 02 May 2007, 14:00

Post by AmelJan »

i have forgotten to tell i use Mantis 1.0.7. It's important for me to have an answer. I don't find the answer on the net, and i need this answer !

Thanks
deboutv
Posts: 507
Joined: 15 Jan 2007, 14:31
Location: La Ciotat, FRANCE
Contact:

Post by deboutv »

Did you try to comment the line about the category and the additionnal informations?
Want more plugins to customize Mantis?
=> http://deboutv.free.fr/mantis/

Mantis: 1.1.0, 1.1.0a2
PHP: 5.0.4
SQL: MySQL 5.0.19
OS: Linux
VadimC
Posts: 3
Joined: 24 May 2007, 14:18

Post by VadimC »

the same problem

Where shall I comment those lines?
deboutv
Posts: 507
Joined: 15 Jan 2007, 14:31
Location: La Ciotat, FRANCE
Contact:

Post by deboutv »

Here is an example (in the bug_report_advanced_page.php):

Before modification:

Code: Select all

<!-- Profile -->
<tr <?php echo helper_alternate_class() ?>>
        <td class="category">
                <?php echo lang_get( 'select_profile' ) ?>
        </td>
        <td>
                <select tabindex="5" name="profile_id">
                        <?php print_profile_option_list( auth_get_current_user_id(), $f_profile_id ) ?>
                </select>
        </td>
</tr>
After modification:

Code: Select all

<!-- Profile 
<tr <?php echo helper_alternate_class() ?>>
        <td class="category">
                <?php echo lang_get( 'select_profile' ) ?>
        </td>
        <td>
                <select tabindex="5" name="profile_id">
                        <?php print_profile_option_list( auth_get_current_user_id(), $f_profile_id ) ?>
                </select>
        </td>
</tr>-->
Want more plugins to customize Mantis?
=> http://deboutv.free.fr/mantis/

Mantis: 1.1.0, 1.1.0a2
PHP: 5.0.4
SQL: MySQL 5.0.19
OS: Linux
Post Reply