Support

Account

Home Forums General Issues Can I sync ACF fields AND values using local JSON? Reply To: Can I sync ACF fields AND values using local JSON?

  • JSON only shares the fields and not any data that is save to those fields.

    When dealing with this you need to build the default values into your theme.

    example:

    
    $option = get_field('your-field-name', 'options');
    if (!$option) {
      $option = 'default option value';
    }