网站和优化 · 3 5 月, 2025

如何将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); }