Support

Account

Home Forums Add-ons Flexible Content Field ACF Pro Flexible Content Sub-Fields are Null for new Field Groups Reply To: ACF Pro Flexible Content Sub-Fields are Null for new Field Groups

  • When using a flex field you need to have a loop https://www.advancedcustomfields.com/resources/flexible-content/

    
    if (have_rows('flex_field_name')) {
      while (have_rows('flex_field_name')) {
        the_row();
        echo get_sub_field('fix_text_field_2');
      }
    }