您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop首页调用指定商品分类下级子分类导航
书瑶2023-12-16 23:17:28ecshop商城教程已有人查阅
导读在文件 includes/lib_goods.php 最后加上;声明后用$smarty调用,就是在index.php中加上下面一句:
在文件 includes/lib_goods.php 最后加上
//*** 调用商品分类指定分类下级分类
function get_parent_id_tree($parent_id)
{
$three_c_arr = array();
$sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('category') . " WHERE parent_id = '$parent_id' AND is_show = 1 ";
if ($GLOBALS['db']->getOne($sql))
{
$child_sql = 'SELECT cat_id, cat_name, parent_id, is_show ' .
'FROM ' . $GLOBALS['ecs']->table('category') .
"WHERE parent_id = '$parent_id' AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC";
$res = $GLOBALS['db']->getAll($child_sql);
foreach ($res AS $row)
{
if ($row['is_show'])
$three_c_arr[$row['cat_id']]['id'] = $row['cat_id'];
$three_c_arr[$row['cat_id']]['name'] = $row['cat_name'];
$three_c_arr[$row['cat_id']]['url'] = build_uri('category', array('cid' => $row['cat_id']), $row['cat_name']);
}
}
return $three_c_arr;
}
声明后用$smarty调用,就是在index.php中加上下面一句:
$smarty->assign('get_parent_id16_tree', get_parent_id_tree(16));//调用父级分类6的下级分类
最后就可以在index.dwt模板文件里开始调用了
<!--{foreach from=$get_parent_id16_tree item=list}-->
<a href="{$list.url}" target="_blank">{$list.name|truncate:15:true}</a>
| <!--{/foreach}--></div>
呵呵,这样就解决了,希望对你有用处
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop添加金额和积分兑换功能实现示例
积分商城里添加个“金额+积分”的兑换功能,(高手略过)虽然没有在商品详情页的“金额+积分”功能那么实用 -
ecshop会员红包新注册会员送红包实现办法
实现办法如下:进入后台找打“数据库管理 ”-》"SQL查询"运行如下语句 -
ecshop商品分类页怎么调用商品销售排行
我们可以看到这个 get_top10()里面是空的,没有传参数,所以调用了全部商品的排行。找到商品的分类的程序页面category.php; -
ecshop后台商品列表怎么显示商品缩略图
ecshop 后台商品列表显示商品缩略图,大楷步凑如下:一:admin\includes\lib_goods.php (可能是781行)
留言与评论 (共有 条评论) |