Support

Account

Home Forums Add-ons Repeater Field Only 1 of 6 repeaters shows Reply To: Only 1 of 6 repeaters shows

  • I don’t see anything that sticks out in your code that would cause the issue.

    The first thing I’d do is make sure that each of these repeaters has content and that content is being retrieved by ACF.

    
    $tabcount = 1;
    while ($tab_count<6) {
      echo 'TAB '.$tabcount;
      echo '<pre>'; print_r(get_field('tab_'.$tabcount.'_cards');
      $tabcount++;
    }