欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > ECSHOP教程 >
ECSHOP教程

ecshop商品详情页面调用当前商品所属分类名称

(元素模板) / 2020-06-24 20:15
ECSHOP在制作模板的过程中想要在详情页面调用该商品所属的商品分类的分类ID和商品名称。通过下面的方法就可以实现了,感兴趣的朋友可以研究看看
第一步:打开goods.php
在页面最下方添加如下方法
function get_cat_info($cat_id)
{
return $GLOBALS['db']->getOne('SELECT cat_name FROM ' . $GLOBALS['ecs']->table('category') .
" WHERE cat_id = '$cat_id'");
} 
第二步:搜索

$smarty->assign('goods_rank',          get_goods_rank($goods_id));

在这句代码下面添加如下代码
$sql= "select cat_id from ".$GLOBALS['ecs']->table('goods')."where goods_id ='".$goods_id."'";

$thiscat_id = $GLOBALS['db']->getOne($sql);

$smarty->assign('thiscat_id',          $thiscat_id);

$smarty->assign('thiscat_name',     get_cat_info($thiscat_id));
第三步:此时在goods.dwt中{$thiscat_id}就是当前商品所属的分类ID
{$thiscat_name}就是当前商品所属的分类名称。在想要调用的地方,粘贴上即可
Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com