Ecshop商品详情页显示当前会员等级价格

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

解决方法:

这个需要修改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']);

就可以了,简单吧。
修改完后,记得清除缓存,然后找个会员登录试下就知道了。

原文地址:https://www.cnblogs.com/wangblognet/p/5751386.html