Hello, i need to hide "View Issues" button on the side bar from REPORTER Profile.
I try $g_view_all_bug_threshold = UPDATER; in config_inc.
Thanks
Hide View Issues button on the side bar
Moderators: Developer, Contributor
Re: Hide View Issues button on the side bar
If you really want to do it, then consider a plugin. You can follow this quick tutorial.
Menu items are printed into an <ul> element, so it might be easy to implement a Jquery function that hide the view_issue page link if user has reporter access level (see access_api and authentication_api).
Menu items are printed into an <ul> element, so it might be easy to implement a Jquery function that hide the view_issue page link if user has reporter access level (see access_api and authentication_api).
Currently working on a wiki-based plugin for MantisBT 2.X. If you'd like to test it, contact me or see the plugin section.
Re: Hide View Issues button on the side bar
Thanks rkarmannrkarmann wrote: ↑Mar 13, 2018 7:21 amIf you really want to do it, then consider a plugin. You can follow this quick tutorial.
Menu items are printed into an <ul> element, so it might be easy to implement a Jquery function that hide the view_issue page link if user has reporter access level (see access_api and authentication_api).
PabloNV