How to change the format of currency in product list?
-
daewooAsked on January 05, 2022 at 04:41 AM
Hello, there! Currently, I want to edit the format of my currency in this form (https://form.jotform.com/220038584817459).
The default is "XXXX IDR", but can we change it into "IDR XXXX"?
Also if it's possible,
can we also edit the format so the separator will show up?Or maybe you guys have any alternatives for me to use?Thanks for the replies!
-
YauAnswered on January 05, 2022 at 06:19 AMJotform Support
Hi,
You may apply this CSS:
.form-product-details span[data-wrapper-react='true'] {
direction: rtl;
}
Result:
Let us know how it goes, thanks.
-
YauAnswered on January 05, 2022 at 06:23 AMJotform Support
To keep this forum more organized, I need to move your other question to another thread:
-
daewooAnswered on January 06, 2022 at 03:00 AM
It's fixed now. Thank you!
But I find that the subtotal and the total still on the same format (XXX IDR). I don't know which label should I add to the CSS you gave me D:
Nevermind, I found it by myself. Just want to put it here just in case someone's looking for it too:
.form-special-subtotal span[data-wrapper-react='true'] {
direction : rtl;
}
.form-product-details span[data-wrapper-react='true'] {
direction : rtl;
}
.form-payment-price span[data-wrapper-react='true'] {
direction : rtl;
}