17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1815 Views |
-
Remove/Hide Newsletters Tab in CMS

22 September 2008 at 7:37pm
Hi,
I'm trying to hide the Newsletters section from view in the CMS itself, any idea's how to go about this?
-
Re: Remove/Hide Newsletters Tab in CMS

22 September 2008 at 8:01pm Last edited: 22 September 2008 8:01pm
LeftAndMain::remove_menu_item('newsletters');
-
Re: Remove/Hide Newsletters Tab in CMS

22 September 2008 at 8:24pm Last edited: 22 September 2008 8:25pm
What Phalkunz suggested will only work on the trunk version of the code. If you are using 2.2.2 or any other stable release > 2.2.2 you have to do
// Remove the option of 'Newsletters' in the CMS for SS <2.3
Object::addStaticVars('LeftAndMain', array(
'removed_menu_items' => array(
'newsletter'
)
));* Add this to your mysite/_config.php file FYI
Just another example of why 2.3 is going to be nice as this way is a bit meh.
-
Re: Remove/Hide Newsletters Tab in CMS

22 September 2008 at 8:27pm
Where would I put that? In my actual project? I'm just working off the tutorial currently and tried it in the page controller which it didn't seem to like, please forgive my nubness
-
Re: Remove/Hide Newsletters Tab in CMS

22 September 2008 at 8:58pm
@will: I totally forgot about it
thanks for correcting
| 1815 Views | ||
|
Page:
1
|
Go to Top |


