How to hide the All tab from the Menu bar in SugarCRM / SuiteCRM

How to Hide The ALL tab from the Menu bar 

Here We are explaining how to hide the All Tab Menu Bar from SugarCRM 6.4.4

Steps are as below,

STEP 1 :
Go to file include/MVC/View/SugarView.php and open the file in the PHP editor

STEP 2 :
Go to line number 509 and comment the line

 $groupTabs[$app_strings['LBL_TABGROUP_ALL']]['modules'] = $fullModuleList;
below that add a new code
 $groupTabs[$app_strings['LBL_TABGROUP_ALL']]['modules'] = '';

Thus once you set that ALL menu tab show only one item in that sub-tab

STEP 3 :
Now moving forward got to line number 513 and comment the line

$allGroup = $app_strings['LBL_TABGROUP_ALL'];

below that add a new code

 $allGroup = $app_strings['LBL_TABGROUP_ALL']  = '';

For the higher version means SugarCRM 6.5.* and SuiteCRM use the following way

STEP 1 :
Go to file  include/MVC/View/SugarView.php and open the file in the PHP editor

Find for the ” $ss->assign(“groupTabs”,$groupTabs);”

just above this line put this code

//this code is used to hide the all tab

unset($groupTabs['All']);
$ss->assign("groupTabs",$groupTabs);

Now save the file and refresh your SugarCRM or SuiteCRM instance. ALL menu tab will be removed from your instance.

Hope you find this blog post helpful.

Feel free to add comments and queries, that helps us to improve the quality of posts.

You can contact us at info@infotechbuddies.com

Thank you.

Spread the love

2 thoughts on “How to hide the All tab from the Menu bar in SugarCRM / SuiteCRM

  • massimiliano

    I
    I have tried, but I have no success. None of the solutions found on the net eliminates that annoying tab. In some cases all the tabs disappear, in others nothing happens

Leave a Reply

Your email address will not be published. Required fields are marked *