Monthly Archives: October 2020

Magento 2
Blank Image

Set all categories to anchor Magento2 MySql

This is a quick fix for those that have a large category structure in Magento 2, where all categories need to be set to Anchor Open up phpMyAdmin and run the following sql command UPDATE catalog_category_entity_intSET value = 1WHERE attribute_id = (SELECT attribute_idFROM eav_attributeWHERE attribute_code = ‘is_anchor’LIMIT 1);...