怎么让ECshop网店分类页面的商品分类树与首页的商品分类树一模一样
怎么让ECshop网店的产品分类页、产品详情页面的商品分类树与首页的商品分类树一模一样?
ECshop网站首页的商品分类树是所有产品的分类,可是内页的商品分类树只是某个产品的分类,现在想让内页的商品分类树和首页的商品分类树显示的一模一样,可以按照下面的方法试试,因为今天修改公司的程序,需要实现这个功能,所以就研究了一下EC的系统后发现,在需要调用全部分类的lbi文件中加入以下php代码即可
< ?php
$GLOBALS['smarty']->assign(‘categories’, get_categories_tree()); // 分类
?>
其实上面的效果就类似于
比如在商品详情页goods.php页面里面将
$smarty->assign(‘categories’, get_categories_tree($goods[‘cat_id’]));
改为
$smarty->assign(‘categories’, get_categories_tree());
比如在商品分类页category.php页面里面将
$smarty->assign(‘categories’, get_categories_tree($goods[‘cat_id’]));
改为
$smarty->assign(‘categories’, get_categories_tree());
文章来源:与你同行·老实孩子·某知名博客[http://blog.youngbar.com];
本文地址:https://blog.youngbar.com/how-to-ecshop-online-shop-merchandise-and-home-goods-classification-tree-exactly-the-same-tree.html
版权所有©非注明网络来源文章请在转载时以链接形式注明作者和原始出处!
来过,踩过,不容错过!
o(∩_∩)o