Support

Account

Home Forums Add-ons Repeater Field Using a repeater field in a for loop Reply To: Using a repeater field in a for loop

  • My select field doesn’t allow multiple options.

    This is my full code if you can spot anything amiss?

    <?php if( have_rows('customer_review') ):
    $count = 0
    ?>
        
    <div class="product-reviews">
           
    <?php while( have_rows('customer_review') ): the_row();	?>       
    
    <div class="one-third<?php if ($count == 0) {echo ' first';} ?>" id="review-container">
    
    <p><?php the_sub_field('review'); ?></p>
    <p><?php the_sub_field('customer_name'); ?></p>
    <p><?php the_sub_field('product'); ?></p>
              
    <?php $rating = the_sub_field('star_rating'); for ($i = 0;  $i < $rating; $i++) { echo '<p>something</p>'; } ?>
    
    <?php if ($count == 2) { $count = 0;} else { $count++; } ?>
    
    </div>
    
    <?php endwhile; ?>
    </div>
    <?php endif; ?>