Magento Custom Product Attribute Visibility

I downloaded my Magento online store using a ton of products with lots of user attributes, but their Visible value at the back end is set to None.

Besides this error on my part (and those who helped me fill out this product database), I cannot find a way to set the attribute visibility to Yes.

I tried to find attribute_id(102) in eav_attributefor attribute_code'visibility' and wanted to set it to a different value in catalog_product_entity_int, but then it became clear to me that "I have to have at least 1 attribute visible, so I have to have at least one entry where it is value is not 4 ". After writing a small query that excluded 4, I found that I had no records at all.

What am I doing wrong? Am I looking at the wrong table here?

Is there any other way to set the "visible" attributes to "Yes" for all attributes?

+5
source share
1 answer

, , catalog_eav_attribute, is_visible is_visible_on_front: 1 () , .

+6

All Articles