Home › Forums › Add-ons › Repeater Field › A repeater in random order including select fields › Reply To: A repeater in random order including select fields
Hi, forgot to set a limit to the array… for my use I was using a for loop.
Change:
$rand_row = $rows[ array_rand( $rows ) ];
to:
$row_count = count($rows);
$rand_row = $rows[ array_rand( $rows, $row_count ) ];
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.