ECSHOP商品价格为0零显示为价格面议或在线咨询

2016-06-13 13:05 来源:www.chinab4c.com 作者:ecshop专家

修改文件: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); }