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

Ecshop本店售价的位置显示当前登陆等级会员价

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-18 09:51:10 浏览: 评论:0 

会员登录状态下,在ECSHOP商品详情页的本店售价中显示当前登录会员对应的等级价格,在未登录状态下,则还默认显示原来的本店售价.

修改方法:

找到并打开文件 /includes/lib_goods.php 将:

$row['shop_price_formated'] = price_format($row['shop_price']);

这一行修改为:

  1. $row['shop_price_formated'] = $_SESSION[user_rank] ?  price_format($row['rank_price']) : price_format($row['shop_price']); 
  2. //开源软件:phpfensi.com 

修改完后,清除缓存,测试下吧.

Tags: Ecshop本店售价 Ecshop会员价

分享到: