arnorhs Posted January 30, 2011 Share Posted January 30, 2011 Hi thereI need to display the product price with dots as thousand separators instead of commas. The prices are formatted that way in Iceland. I can only choose if the price is to have decimals or not, not which symbols are used.. How can I get around this?Cheers Link to comment Share on other sites More sharing options...
inveostore.com Posted January 30, 2011 Share Posted January 30, 2011 Back Office - Payment - Currencies and Edit your currency. Link to comment Share on other sites More sharing options...
arnorhs Posted January 31, 2011 Author Share Posted January 31, 2011 No, you can't do that there. Maybe in the beta?But I found it in the PS code under classes/Tools.php and it was hard-coded in there, so I made my changes there.Thanks anyways Link to comment Share on other sites More sharing options...
kernel-stack Posted March 14, 2011 Share Posted March 14, 2011 In version > 1.4 you can find it here:Payment -> Currencies -> Edit (to the right of the currency you want to change)Note: you have to click the link "Currencies" under the navigation tabs Link to comment Share on other sites More sharing options...
Dave L Posted March 14, 2011 Share Posted March 14, 2011 Hi thereI need to display the product price with dots as thousand separators instead of commas. The prices are formatted that way in Iceland. I can only choose if the price is to have decimals or not, not which symbols are used.. How can I get around this?Cheers In 1.3.6 you can do this.Payments>Currencies... Edit Currency>Formatting. Link to comment Share on other sites More sharing options...
core- Posted July 1, 2012 Share Posted July 1, 2012 In version > 1.4 you can find it here: Payment -> Currencies -> Edit (to the right of the currency you want to change And if you set it there, then you cannot have the currency symbol on the right side (which is a european standard). Link to comment Share on other sites More sharing options...
sporenborg Posted June 23, 2015 Share Posted June 23, 2015 for europe you have to change this file: classes/tools.php in line 543 to: /* 0.000,00 X*/ case 3: $ret = number_format($price, $c_decimals, ',', '.').$blank.$c_char; break; Link to comment Share on other sites More sharing options...
mohitb32 Posted November 10, 2016 Share Posted November 10, 2016 Hi You can get the decimal separator in Prestashop 1.6 by doing this: Go to Localisation and then currencies and then click edit, once you are on the edit page and select the currency format as 0,000.00X(the fourth one in the drop down menu), save the settings and you will get decimlas separating your currency. 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