Support

Account

Home Forums Add-ons Repeater Field Repeater with Post Object Reply To: Repeater with Post Object

  • Ended up needing way less code.

    The below is fixing the issue.

    <?php while(the_repeater_field('product_rows')) : ?>
    <?php $products = get_sub_field('select_products'); ?>
        <?php the_sub_field('select_products') ?>
    <?php endwhile; ?>

    Thanks
    Chris