幫助

產(chǎn)品價格去除金額格式,還原普通價格顯示

2021-06-10 11:02 易優(yōu)技巧
處理前:


處理后:


實現(xiàn)方法:
1、編輯網(wǎng)站根目錄下的 extend\function.php 文件,在里面加上如下代碼:

if (!function_exists('diy_number_format')) {
    /**
     * 將價格格式還原為普通價格
     */
    function diy_number_format($price = '')
    {
        $price = str_replace(',', '', $price);
        $price = preg_replace('/^(\d+)\.00/i', '${1}', $price);
        return $price;
    }
}

如圖:


2、編輯產(chǎn)品詳情頁 template\pc\view_product.htm,對價格標(biāo)簽按圖處理

¥{$eyou.field.users_price|diy_number_format=###}

 


QQ在線咨詢