• Resolved waakeup

    (@waakeup)


    Hi,

    I’m trying to change the format of the price. I’d like to add space between every third number, so it would be easier to read (12345 -> 12 345).

    1
    10
    100
    1 000
    10 000
    100 000
    1 000 000
    10 000 000
    100 000 000
    1 000 000 000

    I couldn’t find any option for this in the settings, so maybe it would be possible to do by edit some files?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Pinpoint World Support

    (@pinpointworld)

    Hi,

    You will have to modify the file assets/js/frontend.js and at line 48 add the following code:

    price = price.replace(/\B(?=(\d{3})+(?!\d))/g,
                                ' ');

    Best Regards,

    Support Team

    Thread Starter waakeup

    (@waakeup)

    Thank you very much! I appreciate your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding space between numbers’ is closed to new replies.