Support

Account

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

  • the_field() echos the field value and does not return a value, you need to use get_field()

    
    $output = get_field('precio');
    $price = number_format( $output, 0, ',', '.');
    echo $price;