How to change the format of currency in product list?

  • daewoo
    Asked on January 5, 2022 at 4: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!

  • Yau_C
    Replied on January 5, 2022 at 6:19 AM

    Hi,

    You may apply this CSS:

    .form-product-details span[data-wrapper-react='true'] {
    direction: rtl;
    }


    Result:

    1641381535 61d57e9fad87a  Screenshot 10

    Let us know how it goes, thanks.

  • Yau_C
    Replied on January 5, 2022 at 6:23 AM

    To keep this forum more organized, I need to move your other question to another thread:

    https://www.jotform.com/answers/3640907

  • daewoo
    Replied on January 6, 2022 at 3: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;
    }