Disable menu grouping for all users - Upgrade Safe

I have seen multiple question regarding to how to hide menu grouping (Menu filters) option for all users. Other members of the community have mentioned other methods but they require to modify core files and they are not upgrade safe. Here is the method I use to solve that problem:

First. This method uses the custom theme folder. Specifically a variant of SuiteP. (If you use the standard theme you will need to copy the contens of /themes/SuiteP/ into /custom/themes/SuiteP/)

Second. Locate file /custom/themes/SuiteP/themedef.php and change from:

...
   ),
    'group_tabs' =>true,
    'classic' => true,
...

To:

...
   ),
    'group_tabs' =>false,
    'classic' => true,
...

Check that option ā€˜group_tabsā€™ was set to false.

Last. Run a QR&R to make sure changes are reflected.

Enjoy!

Thanks,

Broz Technologies

1 Like