Sunday, February 19, 2012

remove tabs in vtiger

remove tabs in vtiger

By , January 13, 2011

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’);