Support

Account

Home Forums Add-ons Gallery Field Limit Image Gallery Reply To: Limit Image Gallery

  • With a repeater you would use the counting method

    
    if (have_rows('field-name')) {
      $count = 1;
      while (have_rows('field-name')) {
        // your output here
        
        $count++;
        if ($count == 10) {
          break;
        }
      }
    }