Support

Account

Home Forums Add-ons Repeater Field Show ACF values from nested repeater on another page template Reply To: Show ACF values from nested repeater on another page template

  • Hey mate, thanks for your help!

    I’ve tried, but still no luck in returning any values. I’ve tried both of these variations:

    <?php while( have_rows('listings_row', 28)): the_row(); ?>
        <pre><?php the_sub_field('title', 28); ?></pre>
    <?php endwhile; ?>
    
    <?php while( have_rows('listings_row', 28)): the_row(); ?>
        <?php $some_var = get_sub_field('title', 28); ?>
        <pre><?php echo $some_var; ?></pre>
    <?php endwhile; ?>

    Just to be clear, I’m attempting to get the values within the nested repeater. Any ideas? I’m scratching my head with this one :\