Home › Forums › Add-ons › Repeater Field › Display Repeater Row Number (ie. 1 of 7) › Reply To: Display Repeater Row Number (ie. 1 of 7)
This was solved by ACF Support. Here is the code if anyone is interested:
<?php
$rows = get_field('blog_style_gallery');
$row_count = count($rows);
$i=1;
?>
<?php
echo "Slide: ". $i." of ".$row_count." Rows";
$i++;
?>
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.