Support

Account

Home Forums Add-ons Repeater Field Using Post Object in Nested Repeater Reply To: Using Post Object in Nested Repeater

  • You need to supply the post ID in have_rows() the same way that you using it in get_field(). You only need to do this for the top level repeater and it is not required in the nested repeater.

    
    if( have_rows('offering', $post_object->ID) ){ 
    		while ( have_rows('offering', $post_object->ID) ) { the_row();