English
For 1.7.x
in "src/Adapter/Presenter/Product/ProductLazyArray.php" find this lines
$this->product['discount_percentage'] = Tools::displayNumber($presNegativeReduction) . '%'; $this->product['discount_percentage_absolute'] = Tools::displayNumber($presAbsoluteReduction) . '%';
and edit like bellow then it will change everywhere.
$this->product['discount_percentage'] = '%'.Tools::displayNumber($presNegativeReduction); $this->product['discount_percentage_absolute'] = '%'. Tools::displayNumber($presAbsoluteReduction);
Türkçe
1.7.x için
"src/Adapter/Presenter/Product/ProductLazyArray.php" içinde bu satırları bulun
$this->product['discount_percentage'] = Tools::displayNumber($presNegativeReduction) . '%'; $this->product['discount_percentage_absolute'] = Tools::displayNumber($presAbsoluteReduction) . '%';
ve aşağıdaki gibi düzenleyin, sonra her yerde değişecektir.
$this->product['discount_percentage'] = '%'.Tools::displayNumber($presNegativeReduction); $this->product['discount_percentage_absolute'] = '%'. Tools::displayNumber($presAbsoluteReduction);