ecshop首页如何调用指定分类下的推荐热销最新商品

 我来答
野人无事不言L
2016-06-08 · TA获得超过1413万个赞
知道顶级答主
回答量:2242万
采纳率:0%
帮助的人:143.7亿
展开全部
1.在首页index.php中找到 1 /* 页面中的动态内容 */ 2 assign_dynamic('index'); 2.在上面添加如下代码 1 $children = get_children(1); 2 $smarty->assign('index_hot_goods_1', get_category_recommend_goods("hot", $children)); // 热销商品 其中分类编号1,根据你想调用分类而填写 如果是最新产品就再加上 1 $children = get_children(1); 2 $smarty->assign('index_new_goods_1', get_category_recommend_goods("new", $children)); // 最新商品 若果是精品产品 1 $children = get_children(1); 2 $smarty->assign('index_best_goods_1', get_category_recommend_goods("best", $children)); // 精品商品 3.然后再模板库文件中新建index_hot_goods_1.lbi。文件内容如下: 1 <!--{foreach from=$index_hot_goods_1 item=goods}--> 2 <li><a href="{$goods.url}"><img src="{$goods.thumb}" alt="{$goods.name|escape:html}" class="goodsimg" border="0" width="160" height="200" /></a> 3 <h1><a href="{$goods.url}" title="{$goods.name|escape:html}">{$goods.short_name|escape:html}</a></h1> 4 <!-- {if $goods.promote_price neq ""} --> 5 <span>一口价 <b>{$goods.promote_price}</b></span> 6 <!-- {else}--> 7 <span>一口价 <b>{$goods.shop_price}</b></span> 8 <!--{/if}--> 9 </li> 10 <!--{/foreach}--> 4.然后在首页模板index.dwt中调用index_hot_goods_1.lbi。 1 <!-- #BeginLibraryItem "/library/index_hot_goods_19.lbi" --><!-- #EndLibraryItem --> 5.如果有多个分类要调用,可以重复1-3的步骤
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式