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']); 就可以了,简单吧。 |