2 replies [Last post]
dgitman's picture
Offline
Joined: 07/22/2008
Juice: 16
Was this information Helpful?

Hi,

Is it possible to remove(hide) the List price, Cost and other production information fields from being displayed in the product add form?

Thanks.

-david

zmove's picture
Offline
Bug FinderEarly adopter... addicted to alphas.Getting busy with the Ubercode.Internationalizationizer
Joined: 08/13/2007
Juice: 1192
Re: Remove Production Information Fields

Yes, it is possible by making a quick module that implement the hook_form_alter function. In that function you can get the form array before and alter it before his generation. So you can remove the field you don't want to this array.

There is a module that allow to hide forms like that, it's formfilter, if he don't do what you want, go to solution #1 ^^

dgitman's picture
Offline
Joined: 07/22/2008
Juice: 16
Re: Re: Remove Production Information Fields

Thanks!