您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop商品页调用热销商品的教程
白晴2023-12-26 01:42:05ecshop商城教程已有人查阅
导读在goods.php里面加了$smarty->assign('hot_goods',get_recommend_goods('hot
在goods.php里面加了
$smarty->assign('hot_goods', get_recommend_goods('hot')); // 获取热销商品。
在goods.dwt加入了如下代码,
<!--{foreach from=$hot_goods item=hotgoods}-->
<li>
<a href="{$hotgoods.url}"><img width="50" height="50" src="{$hotgoods.thumb}" alt="{$hotgoods.name|escape:html}" title="{$hotgoods.name|escape:html}" target="_blank"></a> <a href="{$hotgoods.url}" target="_blank" title="{$hotgoods.name|escape:html}">{$hotgoods.short_style_name}</a><br/>
<b><!-- {if $hotgoods.promote_price neq ""} -->
{$hotgoods.promote_price}
<!-- {else}-->
{$hotgoods.shop_price}
<!--{/if}--></b>
</li>
<!--{/foreach}-->
后台模板设置,控制商品数量显示
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop增加多个ecshop商品编辑器教程
在做商产品详情的时候,经常会有选项卡类似的几个产品说明,如:商品详情,商品规格,参数列表,售后服务等。Ecshop后台里面默认只有一个编辑框(器) -
ecshop会员注册发送红包以及邮箱通知避免重复验证的实现方法
增加注册时发送红包功能,且发送邮件通知用户1:在languages\zh_cn\admin\bonus.php 46行处添加如下 -
ecshop后台订单列表的商品缩略图尺寸怎么定义
这里所说的“后台订单列表的商品缩略图”是指鼠标滑过订单号时弹出的那个浮动层里的商品缩略图。下面是修改方法 -
ecshop订单表结构ecs_order_info说明
CREATE TABLE IF NOT EXISTS `ecs_order_info` ( `order_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单详细信息
留言与评论 (共有 条评论) |