Is it possible in code (or manually) to create a Product Attribute that is not visible (and thus not editable) through the administration edit product page? And how?
(The attribute only needs to used (save / load) in php modules)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it is possible. If you doing it in install script – you should set
'visible'to false:If you need change it for existent attribute directly in db – go to
catalog_eav_attributetable, find your attribute (look for attribute id by attribute code ineav_attributetable) and set it’sis_visiblefield to 0.