让ECSHOP商品列表页和商品详细页分类树跟首页一

2016-09-07 22:03 来源:www.chinab4c.com 作者:ecshop专家

1、问题:
如何让商品列表页或商品详情页的分类树都跟首页一样,也是显示全部所有的分类呢?

2、修改方法:

(1)、商品列表页修改方法:

用EDITPLUS(或dreamweaver)打开category.php 文件

$smarty->assign('categories',       get_categories_tree($cat_id));


修改为

$smarty->assign('categories',       get_categories_tree());


(2)、商品详情页修改方法:

用EDITPLUS(或dreamweaver)打开goods.php 文件

$smarty->assign('categories',         get_categories_tree($goods['cat_id']));


修改为

$smarty->assign('categories',       get_categories_tree());


(3)、最后要记得清除缓存

(责任编辑:chinab4c)