Support

Account

Home Forums Add-ons Repeater Field Cant get 2 loops of 1 repeater to load Reply To: Cant get 2 loops of 1 repeater to load

  • 
    if( have_rows('product_categories') ):
        while ( have_rows('product_categories') ) : the_row();
           // Loop 1 content
        endwhile;
    endif;
    
    reset_rows();
    
    // 2nd Loop
    if( have_rows('product_categories') ):
        while ( have_rows('product_categories') ) : the_row();
           // Loop 2 content
        endwhile;
    endif;