Remove Help Menu Item

As the menu item is created late in the process you need to extend LeftAndMain and then in onAfterInit remove the item...

class MyLeftAndMainExtension extends LeftAndMainExtension {

	function onAfterInit() {
		CMSMenu::remove_menu_item('Help');
	}

}

 

Then link this extension to LeftAndMain...

LeftAndMain:
  extensions:
    - MyLeftAndMainExtension

 

Rate this post

Post your comment

Comments

No one has commented on this page yet.

RSS feed for comments on this page | RSS feed for all comments