5093 Posts in 1516 Topics by 1113 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 5383 Views |
-
Remove CMS tabs

13 February 2009 at 5:52am
I know that I can remove a tab from inside the CMS using something like this:
$fields->removeFieldFromTab("Root.Content.Main","Content");
But how can I go about removing a whole tab?
-
Re: Remove CMS tabs

14 February 2009 at 12:10am
Hi dan
try this inside your getCMSFields function:
$fields->removeByName("TabName");
that should do it
-
Re: Remove CMS tabs

20 October 2009 at 3:05am
Hi I am also try to remove the Help Tab to no avail I have tried what you suggested aram, but it still does not work!!
Also I have tried to add this line inside of my getCMSFields():$fields->removeFieldFromTab("Root","Help");
and it is not working either, can anyone help ?
-
Re: Remove CMS tabs

20 October 2009 at 5:37am
I've worked it out.
If anyone is interested you can suppress the Help tab by commenting the CMSMenu::add_link('Help'.....) that is locateed inside of the LeftAndMain.php in the cms folder. -
Re: Remove CMS tabs

5 February 2010 at 4:37pm Last edited: 5 February 2010 4:39pm
If you want to remove one tab (Main) from Content:
$fields->removeFieldFromTab('Root.Content', 'Main');
If you need to remove multiple tabs (Main, OtherTab, ThirdTab) from Content:
$fields->removeFieldsFromTab('Root.Content',
array(
'Main',
'OtherTab',
'ThirdTab'
)
); -
Re: Remove CMS tabs

18 May 2011 at 3:41am
Better use this in your _config.php:
CMSMenu::remove_menu_item('Help');
-
Re: Remove CMS tabs

18 May 2011 at 4:45am
Maybe, but that if possible you should create a user that has access to only certain tabs using the Security section instead of hacking the code.
Of course if you are talking about "Help" that has to be done as you describe or if the user needs admin access then again, yes to the code hack.
| 5383 Views | ||
|
Page:
1
|
Go to Top |





