Support

Account

Home Forums General Issues Can not get repeater row/data on search page (search.php) Reply To: Can not get repeater row/data on search page (search.php)

  • I don’t see anything wrong with the loop on the repeater, given what I assume to be the case, that the repeater is a top level field on the post.
    are the fields in this section

    
                                        echo "<i>after title</i><hr>";
                                        echo $post->ID;
                                        echo "<i>after id</i><hr>";
                                        the_field('alternate_title', $post->ID);
                                        echo "<i>after alternate_title</i><hr>";
                                        the_field('subdomains', $post->ID);
    

    what happens if you add this to that section

    
    echo '<pre>'; print_r(get_field('activities'); echo '</pre>';