Support

Account

Home Forums Add-ons Repeater Field Problem with 1 element being ommited in the list Reply To: Problem with 1 element being ommited in the list

  • Looks like the problem lies in this.

    
    This:
    <?php if( have_rows('newsletter_files_section', $stronaPdfy) ): the_row(); ?>
    
        <?php while( have_rows('newsletter_files_section', $stronaPdfy) ): the_row(); ?>
    
    Should be like this:
    
    <?php if( have_rows('newsletter_files_section') ): ?>
    
        <?php while( have_rows('newsletter_files_section') ): the_row(); ?>