Search found 4 matches

by Afrank
02 Feb 2010, 13:35
Forum: General Discussion
Topic: Need a tutorial for learning how to use Mantis Bugtracker.
Replies: 1
Views: 3339

Re: Need a tutorial for learning how to use Mantis Bugtracker.

This is an old post but I am working on something like this. Most info you can get now in the updated manual or simply play with it and make your own. If anyone is interested in looking at what I have, PM me.

Also, if you have such a manual (an easy to use with images), please share.

Thanks!
by Afrank
02 Feb 2010, 13:18
Forum: Help
Topic: remove menu options
Replies: 10
Views: 20536

Re: remove menu options

I understood the question as removing primary menu links i.e.

Main | My View | View Issues | Report Issue | My Account | Logout

if you're interested in removing these, simply to to the html_api.php file and comment out the menu you want to not show. For example, I wanted to eliminate Roadmap ...
by Afrank
01 Feb 2010, 14:30
Forum: Customizations
Topic: remove category, priority , severity, etc
Replies: 1
Views: 4001

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 ...
by Afrank
01 Feb 2010, 14:20
Forum: Customizations
Topic: Rmove fields from Advanced bug report page
Replies: 2
Views: 4182

Re: Rmove fields from Advanced bug report page

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