产品价格去除金额格式,还原普通价格显示
2022-05-15 加入收藏
处理前:
处理后:
实现方法:
1、编辑网站根目录下的 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、编辑产品详情页 template\pc\view_product.htm,对价格标签按图处理
¥{$eyou.field.users_price|diy_number_format=###}
如图:
2、编辑产品详情页 template\pc\view_product.htm,对价格标签按图处理
¥{$eyou.field.users_price|diy_number_format=###}