Support

Account

Home Forums Add-ons Flexible Content Field Loop a flexible content field from inside a group field of an option Reply To: Loop a flexible content field from inside a group field of an option

  • I just solved the problem…

    if( have_rows('group_field', 'option' ) ) {
        while ( have_rows( 'group_field', 'option' ) ) {
            the_row();
    
            if( have_rows( 'flexible_content_field_name_inside_the_group_field' ) ) {
                // do the flexible content thing
            }
        }
    }