app/code/core/Mage/Catalog/Block/Product/View/Options/Abstract.php
Tìm 2 dòng priceInclTax đóng nó lại
và thay bằng 2 dòng dưới.
//$_priceInclTax =
$this->getPrice($value['pricing_value'], true);
//$_priceExclTax =
$this->getPrice($value['pricing_value']);
Thay bằng
$_priceInclTax = $this->getPrice($value['pricing_value'], true)+$this->getProduct()->getFinalPrice();
$_priceExclTax = $this->getPrice($value['pricing_value'])+$this->getProduct()->getFinalPrice();
Muốn bỏ dấu + có trong option tìm $sign='+';
đóng nó hoặc thay = dấu khác
Không có nhận xét nào:
Đăng nhận xét