Support

Account

Home Forums General Issues Price Field and JS Mask Reply To: Price Field and JS Mask

  • hi,

    You can create field price as number field, and show format price width php

    price filed value: 20000000

    php format

    
    <?php $price = get_field('price'); ?>
    <?php echo number_format($price, 0); ?>

    You have html format: 20,000,000

    All format you can check here: http://php.net/manual/en/function.number-format.php