Skip to content
Advertisement

advanced custom fields can’t do nested loops repeater inside repeater have_rows() not doing anything

I have a repeater inside a repeater and I need to loop what is in it.

I’m following this: https://www.advancedcustomfields.com/resources/have_rows/

This is my field structure:

JavaScript

So with that in mind, as I understand it, I need to loop over agenda_section_events and inside that I need to get rows https://www.advancedcustomfields.com/resources/have_rows/

So that code looks like this:

JavaScript

I’m really confused because all my field names are right, and the fields inside the second loop are sub fields but nothing is showing.

Why would that be?

I then thought its because I did a have rows inside a for each so then I tried doing a while inside a while like the acf docs

JavaScript

Since implementing this change, now the page just…doesn’t load!? What!?

How do you do a nested for loop in advanced custom fields?

Advertisement

Answer

You need to add the_row(); inside your while loops. All ACF loops are formatted the same, nested or not. Something I do to keep it easy is make the if/while/the_row stuff all one line, see below:

Start loops like this:

JavaScript

End loops like this:

JavaScript

You can go wild with the number of loops you want to nest, just simply copy the parent loop lines and create a nested one, then change your row to the nested one of course.

I adjusted your code below, give this a shot.

You should also define your subfield array values inside the loop you’re using it with, just keeps things cleaner – or just use the_sub_field to echo your subfield values since its a short function anyway.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement