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); }

(0)

相关推荐