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; ?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.