Home › Forums › Add-ons › Repeater Field › Show repeater rows based on radio value › Reply To: Show repeater rows based on radio value
Hi @amycarolyn
All that is needed is some simple PHP logic like so:
<?php if(get_field('repeater_field_name')): ?>
<ul>
<?php while(has_sub_field('repeater_field_name')): ?>
<?php if( get_sub_field('select') == 'Row One' ): ?>
<?php // do this... ?>
<?php else: ?>
<?php // do that... ?>
<?php endif; ?>
<?php endwhile; ?>
</ul>
<?php endif; ?>
Good luck!
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.