我需要导航菜单的帮助。当我在管理面板中添加新类别时,导航菜单未显示任何类别。导航菜单中根本没有显示类别。
以下是我对导致问题的数据库所做的操作。
TRUNCATE TABLE catalog_category_entity
;
TRUNCATE TABLE catalog_category_entity_datetime
;
TRUNCATE TABLE catalog_category_entity_decimal
;
TRUNCATE TABLE catalog_category_entity_int
;
TRUNCATE TABLE catalog_category_entity_text
;
TRUNCATE TABLE catalog_category_entity_varchar
;
TRUNCATE TABLE catalog_category_product
;
TRUNCATE TABLE catalog_category_product_index
;
插入catalog_category_entity
(entity_id
,entity_type_id
,attribute_set_id
,parent_id
,created_at
,updated_at
,{{1 }},path
,position
,level
)值(1,3,0,0,'0000-00-0000,00:00:00','2009-02-20 00:25:34','1',1,0,1),(2,3,3,0,'2009-02-20 00:25:34','2009-02-20 00:25: 34' , '1 /',1,1,0);
插入children_count
(catalog_category_entity_int
,value_id
,entity_type_id
,attribute_id
,store_id
,entity_id
)值(1,3, 32,0,2,1),(2,3,32,1,2,1);
插入value
(catalog_category_entity_varchar
,value_id
,entity_type_id
,attribute_id
,store_id
,entity_id
)值(1,3, 31,0,1,'根目录'),(2,3,33,0,1,'根目录'),(3,3,31,0,2,'默认类别'),(4, 3,39,0,2, '产品'),(5,3,33,0,2, '默认类别');
运行上述查询后,导航菜单中的所有类别都消失了,即使我在管理面板中添加了更多类别,也没有任何类别显示。
我检查了top.phtml文件,代码$ this-> getStoreCategories()没有返回任何内容。
我该如何解决这个问题?
由于
答案 0 :(得分:0)
通过运行Magento示例数据sql文件插入数据来解决该问题。