Thẩm mỹ viện Uy Tín | Web Chăm sóc Gia Đình

Tiêu đề: Hiển thị sản phẩm dạng 123.456.789 trong ECSHOP [In trang]

Tác giả: admin    Thời gian: 27-8-2016 18:19
Tiêu đề: Hiển thị sản phẩm dạng 123.456.789 trong ECSHOP
Bƣớc 1:
Eidt file lib_common.php trong thư mục includes các bạn tìm đến dòng:
  1. function price_format($price, $change_price = true)
Sao chép mã

Copy đoạn code này thay thế đoạn code của bạn:
  1. function price_format($price, $change_price = true)
  2. {
  3. if ($change_price && defined('ECS_ADMIN') === false)
  4. {
  5. switch ($GLOBALS['_CFG']['price_format'])
  6. {
  7. case 0:
  8. $price = number_format($price, 0, ',', '.');
  9. break;
  10. case 1: // 保留不为 0 的尾数
  11. $price = preg_replace('/(.*)(\\.)([0-9]*?)0+$/', '\1\2\3', number_format($price,
  12. 0, ',', '.'));
  13. if (substr($price, -1) == '.')
  14. {
  15. $price = substr($price, 0, -1);
  16. }
  17. break;
  18. case 2: // 不四舍五入,保留1位
  19. $price = substr(number_format($price, 0, ',', '.'), 0, -1);  
  20. break;
  21. case 3: // 直接取整
  22. $price = intval($price);
  23. break;
  24. case 4: // 四舍五入,保留 1 位
  25. $price = number_format($price, 0, ',', '.');
  26. break;
  27. case 5: // 先四舍五入,不保留小数
  28. $price = round($price);
  29. break;
  30. }
  31. }
  32. else
  33. {
  34. $price = number_format($price, 0, ',', '.');
  35. }
  36. return sprintf($GLOBALS['_CFG']['currency_format'], $price);
  37. }
Sao chép mã

Bƣớc 2:
Vào Admin - menu Hệ Thống - Cấu hình - tab Cài đặt hiển thị - dòng Định giá - chọn
Hiện không xử lý
Chú ý: Để đảm bảo an toàn trong việc edit code bạn có thể tải file lib_common.php về
copy đè lên file cũ của bạn.
Link: http://www.mediafire.com/?5b6hg4dnybs3hsz







Chào mừng ghé thăm Thẩm mỹ viện Uy Tín | Web Chăm sóc Gia Đình (http://www.chamsocgiadinh.com/) Powered by Discuz! X3.2