Disabling monetization

ele

Member
Is there a way to disable the monetization menu in the back-end ? Something reversible like done for the store menu in apps/common/config/main-custom.php for example (e.g. 'monetization.enabled' => false).

--
EDIT: OK, found (searching the word "hooks" in the code), hooking from apps/init-custom.php with this below. So, I'll remove the '?' in the thread's title ;)

PHP:
Yii::app()->hooks->addFilter('backend_left_navigation_menu_items', function($menuItems){
    unset($menuItems['monetization']);
    return $menuItems;
});
 
Last edited:
Back
Top