webstermobile
Fork me on GitHub
个人博客

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

修改方法:

1、商品列表页修改方法:
用EDITPLUS(或dreamweaver)打开category.php 文件

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

修改为

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

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

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

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

修改为

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

3、清除缓存

posted @ 2014-04-09 18:58  wpindesign  阅读(636)  评论(0编辑  收藏  举报