如何修改ecshop的“0元”商品显示为“价格面议”
修改文件:includes/lib_common.php
修改目的:【将“0元”商品显示为“价格面议”】
修改方法:
return sprintf($GLOBALS['_CFG']['currency_format'], $price);
替换为:
if (intval($price) == 0) { return "价格面议";} else { return sprintf($GLOBALS['_CFG']['currency_format'], $price); }
文章来源:与你同行·老实孩子·某知名博客[http://blog.youngbar.com];
本文地址:https://blog.youngbar.com/how-to-modify-ecshop-the-0-commodity-appears-as-price.html
版权所有©非注明网络来源文章请在转载时以链接形式注明作者和原始出处!
如果這樣子改了之後 原來首頁 “購物車 總金額$ 0元” 變成了 “購物車 總金額$undefined”
可否幫忙解決此問題!? 感謝.
编辑的时候使用Editplus等工具试试