Home › Forums › General Issues › How to show only one row using the_sub_field › Reply To: How to show only one row using the_sub_field
you could use:
$row1 = get_field('counter_repeater_0_counter_number'); //for first row
$row2 = get_field('counter_repeater_1_counter_number'); //for second row
...
echo "<tr><td><p>name:</p></td><td><p>";
echo $row1;
echo "</p></td><tr>";
...
instead of your if-while loop (just add 3+4 row & echo row 2-4 where you wish)
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.