-
Currently, I'm able to add new custom admin menu. For example:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
Such menu items are registered by default enabled modules using |
Beta Was this translation helpful? Give feedback.
-
I'd like to remove some menu items into menu 'configuration'. I check class I tried to copy menuitems code from OC source code to my AdminMenu.cs. Too complicated. Now I found the easiest way is to js in Admin Theme #content,#themes ,#security { visibility: hidden; } (function(){
var target=$('#configuration').next();
$('#content,#themes ,#security').parentsUntil('li').parent().prependTo(target).end().end().end().css('visibility','visible');
})();
|
Beta Was this translation helpful? Give feedback.
Such menu items are registered by default enabled modules using
INavigationProvider
, so I think you can useNavigationBuilder
to remove any menus so far