First identify the attribute id of the is_anchor attribute:
SELECT * FROM eav_attribute where attribute_code = ‘is_anchor’;
Get the attribute id (for me is 51).
Now run the following query
UPDATE catalog_category_entity_int set value = 1 where attribute_id = 51;
replace 51 with your own attribute id.
SELECT * FROM eav_attribute where attribute_code = ‘is_anchor’;
Get the attribute id (for me is 51).
Now run the following query
UPDATE catalog_category_entity_int set value = 1 where attribute_id = 51;
replace 51 with your own attribute id.
No comments:
Post a Comment