Home › Forums › Add-ons › Repeater Field › Repeater with Post Object › Reply To: Repeater with Post Object
For anyone out there. This was the end result, it works.
Basically I’m generating a shortcode for each row in the back-end. And with an object field, you can pick your products.
<?php while(the_repeater_field('product_rows')) : ?>
<?php $products = get_sub_field('select_products') ?>
<li>
<?php echo do_shortcode("[products ids='".implode(',',$products)."']"); ?>
</li>
<?php endwhile; ?>
Chris
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.