修改文件: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); }
美国服务器选米云 – FWQ.AI
修改文件: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); }