Support

Account

Home Forums Add-ons Repeater Field Counting fields of a nested repeater Reply To: Counting fields of a nested repeater

  • ACF support gave me the following solution which worked for me.

    $rows = get_sub_field('sub_field_of_repeater');
    if( have_rows('sub_field_of_repeater') ):
    $count = count($rows);