magento产品可视性

时间:2010-09-07 01:46:57

标签: mysql magento

mysql是否有办法将所有产品可见性设置为目录,搜索?

1 个答案:

答案 0 :(得分:10)

打开eav_attribute表,找到attribute_code =可见度的行。记下attribute_id,最有可能是85.另请注意backend_type = int。这告诉您该属性存储在catalog_product_entity_int中。所以,现在你可以运行:

update `catalog_product_entity_int` set value = 4 where attribute_id = 85

(当然假设attribute_id是85!)

确保在运行数据库之前备份数据库。

HTH, JD