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

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

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

会员登录状态下,在ECSHOP商品详情页的本店售价中显示当前登录会员对应的等级价格,

在未登录状态下,则还默认显示原来的本店售价.

修改方法:

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

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

这一行修改为

$row['shop_price_formated'] = $_SESSION[user_rank] ?  price_format($row['rank_price']):price_format($row['shop_price']);

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

Tags: Ecshop售价 等级 位置

分享到: