Home › Forums › Add-ons › Flexible Content Field › Not able to add more flexible content fields › Reply To: Not able to add more flexible content fields
Hey Sushant, you had asked about this issue on a thread that I had started.
This is what I had posted there:
After playing with it a bit here is a setup that works.
Sceenshots:
ACF fields setup
Creating the post
The posts output
And this is the code put into single.php before the end of the have_posts() loop
<?php if ( have_rows( 'flex_holder' ) ): ?>
<?php while ( have_rows( 'flex_holder' ) ) : the_row(); ?>
<?php if ( get_row_layout() == 'repeater_holder' ) : ?>
<?php if ( have_rows( 'repeater' ) ) : ?>
<?php while ( have_rows( 'repeater' ) ) : the_row(); ?>
<?php the_sub_field( 'repeater_field_1' ); ?>
<?php the_sub_field( 'repeater_field_2' ); ?>
<?php endwhile; ?>
<?php else : ?>
<?php // no rows found ?>
<?php endif; ?>
<?php endif; ?>
<?php endwhile; ?>
<?php else: ?>
<?php // no layouts found ?>
<?php endif; ?>
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!
ACF gives Rareloop greater control over the WordPress admin experience. See how in our case study. https://t.co/IFafQupmrl
— Advanced Custom Fields (@wp_acf) May 15, 2023
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.