remove tabs in vtiger
how to remove tabs from the main menu in vtiger
Edit the file parent_tabdata.php, find the array $parent_tab_info_array, and delete from it the entries you don’t want.
Example
$parent_tab_info_array=array(1=>’My Home Page’,2=>’Marketing’,3=>’Sales’,4=>’Support’,5=>’Analytics’,6=>’Inventory’,7=>’Tools’,8=>’Settings’);
becomes
$parent_tab_info_array=array(1=>’My Home Page’,2=>’Marketing’,3=>’Sales’,4=>’Support’,5=>’Analytics’,8=>’Settings’);