当前位置:首页 > CMS教程 > ecshop > 列表

ecshop商品详情页显示收藏数量

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-08 15:41:44 浏览: 评论:0 

众所周知,现在的ecshop模板商品详情页,已经能够显示购买数量、评论数量了,但是唯独没有显示收藏数量,也就是淘宝上的收藏人气,下面ECSHOP开发中心介绍一下如何就把它显示出来.

1)、首先打开 /includes/lib_insert.php文件,在文件末尾增加下面代码:

  1. function insert_goods_collect($arr
  2.  { 
  3.          $sql='select count(user_id) as ids '.'from '$GLOBALS['ecs']->table('collect_goods')."as co "."where co.goods_id=".$arr['goods_id']; 
  4.          $row=$GLOBALS['db']->GetRow($sql); 
  5.          if($row
  6.          { 
  7.                  $ids = intval($row['ids']); 
  8.          } 
  9.          else 
  10.          { 
  11.                  $ids = 0; 
  12.          } 
  13.          return $ids
  14.  } 

2)、接着打开模板文件 /themes/default/goods.dwt,前台调用为

收藏人气:{insert name='goods_collect' goods_id=$id}人

Tags: ecshop 收藏数量

分享到: