This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.

sqwk
sqwk

How do I override and reorder the categories in the settings menu? I have quite a few plugins installed and they are creating their own categories—I'd like to move them into the Misc category.

I created a custom plugin and tried something like this, but couldn't yet find the winning combination of parameters:

public function boot()
{
    \Event::listen('backend.menu.extendItems', function(\Backend\Classes\NavigationManager $navigationManager) {
        $navigationManager->addSideMenuItem('October.System', 'system', 'settings',
        [
            'PluginClass.PluginName' => [
                'category' => 'system::lang.system.categories.misc'
            ]
        ]);
    });
}

1-1 of 1

You cannot edit posts or make replies: the forum has moved to talk.octobercms.com.