magento中给分类添加属性有两种办法,先说第一张比较简单的,说白了就是把产品属性修改为分类属性 ok,那么 开始 首先新建一个产品属性 gamename_firstwords
讲产品属性修改为分类属性,需要了解EAV模型的原理,关于原理读者自行学习,我在这里只说明方法 首先修改eav_attribute这张表
改为
为什么把4改为3呢
第二步 修改eav_entity_attribute INSERT INTO `eav_entity_attribute` (`entity_type_id`, `attribute_set_id`, `attribute_group_id`, `attribute_id`, `sort_order`) VALUES ('3', '3', '3', '126', '0') 然后我们去添加分类
ok 实现效果 这里刚选错了,改为下拉列表 方法 修改eav_attribute
实现效果 第二种方法其实就是第一张方法的手动实现,读者可以自行完成 (责任编辑:最模板) |