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

Post's attachments

ManuTab.png 39.2 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

Re: Please help with the design modification

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

The FrontAccounting Wiki(Manual, examples, tips, setup info, links to accounting sites, etc) https://frontaccounting.com/fawiki/

Re: Please help with the design modification

thanks
Just show me
Manufacturing & Fixed Assets
I want to hide sales, purchases and inventory

Re: Please help with the design modification

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

Phuong

5 (edited by poncho1234 10/15/2017 03:25:45 pm)

Re: Please help with the design modification

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

The FrontAccounting Wiki(Manual, examples, tips, setup info, links to accounting sites, etc) https://frontaccounting.com/fawiki/

Re: Please help with the design modification

$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.