Reputation: 258
I migrated my categories from Magento 1.9 to Magento 2 and I try to create sub-category from the backend, but the category's name is not shown. If you edit any category attributes it's not saving.
I searched on internet, and I found this question in magento.stackexchange but no answer is there. Magento StackExchange
Upvotes: 1
Views: 1548
Reputation: 111
I have found one solution for this. It's working fine for me.
For the category name you need to check your "Mysql Table => catalog_eav_attribute".
In This Table you need check two entry one for Attribute id 45 and another is 46.
If you have not found This then you need manualy Insert both of that.
Need to add three colum first is (attribute_id => 'Attributeid ex. 45 and 46', is_visible => 'Visitbility default ex. 1', search_weight => 'default ex. 1').
After that check.
Upvotes: 1