熱銷商品查詢php,ecshop首页调用指定商品分类下推荐热销最新商品

其实这个在ecshop中预留这个函数,不知道是不是开发者特意留下,但不想让所有人知道而已,函数在includes/lib_goods.php里面。

下面开始教你如何添加指定分类的下热销产品:

1.在首页index.php中找到/* 页面中的动态内容 */

assign_dynamic('index');

2.在上面添加如下代码$children = get_children(1);

$smarty->assign('index_hot_goods_1', get_category_recommend_goods("hot", $children)); // 热销商品

其中分类编号1,根据你想调用分类而填写

如果是最新产品就再加上$children = get_children(1);

$smarty->assign('index_new_goods_1', get_category_recommend_goods("new", $children)); // 最新商品

若果是精品产品$children = get_children(1);

$smarty->assign('index_best_goods_1', get_category_recommend_goods("best", $children)); // 精品商品

3.然后再模板库文件中新建index_hot_goods_1.lbi。文件内容如下:

{$goods.name|escape:html}

{$goods.short_name|escape:html}

一口价 {$goods.promote_price}

一口价 {$goods.shop_price}

4.然后在首页模板index.dwt中调用index_hot_goods_1.lbi。

5.如果有多个分类要调用,可以重复1-3的步骤

至于每个调用的商品的数量 ,在后台》》模板设置》》

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值