remove category, priority , severity, etc
Moderators: Developer, Contributor
remove category, priority , severity, etc
It's possible?
Re: remove category, priority , severity, etc
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.
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.