dirk.j.herrmann Posted March 26, 2016 Share Posted March 26, 2016 (edited) Hi there, I need to move the % sign in a different position for Turkish. In Turkish, the percent discount is written as %10 instead of 10% but I don't know how to change that position. Can anyone help me??!! Dirk Edited August 11, 2016 by dirk.j.herrmann (see edit history) Link to comment Share on other sites More sharing options...
tuk66 Posted March 30, 2016 Share Posted March 30, 2016 Go to Localization > Currencies and change the Currency format. Link to comment Share on other sites More sharing options...
dirk.j.herrmann Posted March 30, 2016 Author Share Posted March 30, 2016 thanks for the reply ! I understand how to change currency format but how can I change percentage reduction?! Link to comment Share on other sites More sharing options...
tuk66 Posted March 30, 2016 Share Posted March 30, 2016 Sorry, I overlooked it. Simply, there is no easy solution. You must find all % signs in dozens of files and change the code. Link to comment Share on other sites More sharing options...
dirk.j.herrmann Posted May 16, 2016 Author Share Posted May 16, 2016 Hi there, can you give me one example what to look for in the files? I cannot figure out where to find the % percentage signs position?! THX !!! Link to comment Share on other sites More sharing options...
dirk.j.herrmann Posted May 18, 2016 Author Share Posted May 18, 2016 SOLVED ! Thanks to NickC here is the link: https://www.prestashop.com/forums/topic/527405-need-to-move-sign-for-precentage-discount/ Link to comment Share on other sites More sharing options...
dirk.j.herrmann Posted August 11, 2016 Author Share Posted August 11, 2016 you can find further details under this link: https://www.prestashop.com/forums/topic/527405-solved-need-to-move-sign-for-precentage-discount/ Link to comment Share on other sites More sharing options...
Murat Kezli Posted December 4, 2021 Share Posted December 4, 2021 (edited) 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); Edited December 4, 2021 by Murat Kezli (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now