ECSHOP首页显示ecshop积分商城里商品方法.docVIP

  • 4
  • 0
  • 约3.07千字
  • 约 3页
  • 2017-06-09 发布于北京
  • 举报

ECSHOP首页显示ecshop积分商城里商品方法.doc

ECSHOP首页显示ecshop积分商城里的商品方法 ECSHOP教程网: HYPERLINK /ecshop-ercikaifa/272.htm /ecshop-ercikaifa/272.htm 下面就以ECSHOP官方默认模板为基础,给大家提供一个完整的解决方案。 (本教程由ECSHOP120()提供,如要转载,请注明出处) 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 . ECSHOP二次开发 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); 转载请注明:文章转载自ECSHOP教程网 $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 h3spana href=/exchange.php class=f6积分商城/a/span/h3 div class=centerPad

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档