Could you please help me to hide link "Main" to the main_page.php? I don't know how to do it.
Thank you
Hide main_page
Moderators: Developer, Contributor
Re: Hide main_page
At first sight I see no way to disable this by normal customization, so you would have to change the code.
If you use MantisBt version 1.2.1 this can be done by changing the file core/html_api.php
Just comment out line 721by adding at # at the beginning of the line
# $t_menu_options[] = '<a href="' . helper_mantis_url( 'main_page.php' ) . '">' . lang_get( 'main_link' ) . '</a>';
If you use MantisBt version 1.2.1 this can be done by changing the file core/html_api.php
Just comment out line 721by adding at # at the beginning of the line
# $t_menu_options[] = '<a href="' . helper_mantis_url( 'main_page.php' ) . '">' . lang_get( 'main_link' ) . '</a>';
Re: Hide main_page
Great! It works. Thank you for your help 