remove category, priority , severity, etc

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
|UVI|
Posts: 12
Joined: 02 Dec 2008, 12:20

remove category, priority , severity, etc

Post by |UVI| »

It's possible?
Afrank
Posts: 4
Joined: 27 Jan 2010, 19:01

Re: remove category, priority , severity, etc

Post by Afrank »

Yes this is possible. I know there are several posts that already address this since I too needed to customize Mantis for my purpose however, here is what I did that may help you [V 1.1.8]:

To hide/remove a severity for example, simply locate and open config_defaults_inc.php and strings_english.txt files.


Find these lines and remove the status you dont need:

$g_status_enum_string = '10:new,20:resolved,40:confirmed,50:assigned,80:waived,90:closed';

be sure to remove the number to the left of each status on both files.

Example: To remove "confirmed", change this:

$g_status_enum_string = '10:new,20:resolved,40:confirmed,50:assigned,80:waived,90:closed';

to this (on both files):

$g_status_enum_string = '10:new,20:resolved,50:assigned,80:waived,90:closed';


There may be a better way, but this is how I did it.
Post Reply