Topic: Please help with the design modification
I want to hide the Manufacturing tab. I want to hide in full content. How do you do this through design?
http://prntscr.com/gvpddz
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
FrontAccounting forum → FA Modifications → Please help with the design modification
I want to hide the Manufacturing tab. I want to hide in full content. How do you do this through design?
http://prntscr.com/gvpddz
Go to Setup then company setup, on the right you will see a section labeled 'Optional Modules' Uncheck Manufacturing, click update button, log-out then log-in
thanks
Just show me
Manufacturing & Fixed Assets
I want to hide sales, purchases and inventory
See the function init{} in the frontaccounting.php, here you can disable any module by comment out a corresponding line.
In your case please replace lines 79 - 80 - 81 with the fllowing:
//$this->add_application(new customers_app());
//$this->add_application(new suppliers_app());
//$this->add_application(new inventory_app());
The correct way to hide any menu item is change the line
$hide_inaccessible_menu_items = 0;
to
$hide_inaccessible_menu_items = 1;
in config.php
Then any menu item not accessible to the user as defined in Setup -> Access Setup will not be visible
$hide_inaccessible_menu_items is for hiding menu items inside the tabs .
The commenting out of the add_application() is for hiding menu tabs at the top.
FrontAccounting forum → FA Modifications → Please help with the design modification
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.