您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop商城首页显示积分商品调用积分商品的代码示例
信品2024-04-25 23:02:11ecshop商城教程已有人查阅
导读ECSHOP商城首页显示积分商品,如何在首页调用积分商品ecshop开发教程,希望对大家有些帮助!
ECSHOP商城首页显示积分商品,如何在首页调用积分商品ecshop开发教程,希望对大家有些帮助!
1、首先打开index.php文件
在最末尾?>的前面增加:
商城首页文件themes/default/index.dwt
在你想显示积分商城商品的地方,加入下面代码段
1、首先打开index.php文件
在最末尾?>的前面增加:
/***
获得积分商城热门商品
*
* @param int $limit
列出条数
* @param int $ishot
是否只显示热销
*@return array
*/function index_get_exchange($limit=3,$ishot=0)
{
/*
获得热门积分商品列表
*/
$sql_ishot=$ishot ? " AND eg.is_hot=1 " : "";
$sql='SELECT g.goods_id,g.goods_name, g.goods_name_style, eg.exchange_integral,'.' g.goods_type,g.goods_brief, g.goods_thumb, g.goods_img, eg.is_hot ' .
' FROM ' . $GLOBALS['ecs']->table('exchange_goods') . ' AS eg LEFT JOIN ' .
$GLOBALS['ecs']->table('goods') . ' AS g ON g.goods_id = eg.goods_id ' .
' WHERE eg.is_exchange = 1 AND g.is_delete = 0 '. $sql_ishot .' limit '.$limit;
$res = $GLOBALS['db']->getAll($sql);
$arr = array();
foreach($res AS $idx => $row)
{
$arr[$idx]['name'] = $row['goods_name'];
$arr[$idx]['goods_brief'] = $row['goods_brief'];
$arr[$idx]['goods_style_name'] = add_style($row['goods_name'],$row['goods_name_style']);
$arr[$idx]['exchange_integral'] = $row['exchange_integral'];
$arr[$idx]['type'] = $row['goods_type'];
$arr[$idx]['goods_thumb'] = get_image_path($row['goods_id'],
$row['goods_thumb'], true);
$arr[$idx]['goods_img'] = get_image_path($row['goods_id'],
$row['goods_img']);
$arr[$idx]['url'] = build_uri('exchange_goods',
array('gid'=>$row['goods_id']), $row['goods_name']);
}
return $arr;
}
然后继续在index.php 文件中 找到
$smarty->assign('shop_notice',$_CFG['shop_notice']); // 商店公告
在它下边另起一行增加如下代码
$smarty->assign('goods_exchange_list',index_get_exchange(6,0)); //积分商城
如果你想只显示热销的积分商品,只需将上面代码稍作修改即可
$smarty->assign('goods_exchange_list',index_get_exchange(6,1)); //积分商城
2、下面继续修改模板文件商城首页文件themes/default/index.dwt
在你想显示积分商城商品的地方,加入下面代码段
<!--积分商城列表-->
<div class="box">
<div class="box_1">
<h3><span><a href="/exchange.php" class="f6">
积分商城
</a></span></h3>
<div class="centerPadd">
<div class="clearfix goodsBox" style="border:none;">
<!--{foreach name=goods_exchange_list from=$goods_exchange_list
item=exchange_goods}-->
<div class="goodsItem">
<a href="{$exchange_goods.url}" target="_blank"><img
src="{$exchange_goods.goods_thumb}" alt="{$exchange_goods.goods_name}"
class="goodsimg" /></a><br />
<p><a href="{$exchange_goods.url}" target="_blank">
<!-- {if $exchange_goods.goods_style_name} -->
<font class="f3">{$exchange_goods.goods_style_name}</font><br />
<!-- {else} -->
<font class="f3">{$exchange_goods.goods_name}</font><br />
<!-- {/if} -->
</a>
</p>
{$lang.exchange_integral}<font
class="price">{$exchange_goods.exchange_integral}</font>
</div>
<!--{/foreach}-->
<div class="more"><a href="/exchange.php"><img src="images/more.gif"
/></a></div>
</div>
</div>
</div>
</div>
<div class="blank5"></div>
3.css外观自己写下,这样就大功告成了!
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop自定义导航栏下面怎么显示热门搜索
如果你使用的是官方默认模板,只需进行 步操作即可,如果您使用的是其他ECSHOP模板,则可能还需要进行第2步操作。 -
ecshop广告图片增加alt=”广告关键字描述”的方法
1.在includes/lib_insert.php文件143和156行“a.ad_name,”后面增加“a.img_alt,”,在182行“src=’$src’”后面增加“alt=’$row[img_alt]‘” -
ecshop多城市多门店上门取货自提点设置方法
ecshop上门取货门店自提点,后台设置配送方式为上门取货门店自提,后台可设置不同城市多城市多地区不同门店地址信息,前台会员购物下单根据用户收货地址显示门店自提点 -
ecshop后台登陆后一段时间不操作就超时怎么办
客户生意比较好,因此比较忙,常常不在电脑前,经常打开后台长时间不操作,等回到电脑前操作时,每次都超时,需要从新登陆,因此,客户希望后台的登录时间尽量长些
留言与评论 (共有 条评论) |