How can I change the currency format #849
-
Hi, maybe this is documented somewhere but I cannot seem to find this. Is it possible to change the currency notation? In The Netherlands cents a comma is used as a decimal separator and a period is used as a thousands separator. So that would result in something like Regards, |
Beta Was this translation helpful? Give feedback.
Answered by
duncanmcclean
Mar 6, 2023
Replies: 1 comment 1 reply
-
Hey! If you update to v4.5.7, you can now customise these formatting symbols. You can configure it in your Simple Commerce config file: // config/simple-commerce.php
'sites' => [
'default' => [
'currency' => 'GBP',
'currency_formatting' => [
'thousand_separator' => '.',
'decimal_separator' => ',',
],
],
], Hopefully that works for you! |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
duncanmcclean
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey!
If you update to v4.5.7, you can now customise these formatting symbols.
You can configure it in your Simple Commerce config file:
Hopefully that works for you!