Support

Account

Home Forums General Issues Number field type thousand separator Reply To: Number field type thousand separator

  • Try this code:
    <?php
    $num = get_field(‘your_field’);
    $formattedNum = number_format($num).”<br>”;
    echo $formattedNum;
    ?>