Support

Account

Home Forums Add-ons Options Page Flexible Content Clone in a Group on an Options Page? Reply To: Flexible Content Clone in a Group on an Options Page?

  • Nevermind I got this to work 🙂

    <?php
    
    if ( have_rows( 'review_list_precontent', 'option' ) ) : 
        while ( have_rows( 'review_list_precontent', 'option' ) ) : the_row();
    
            if ( have_rows( 'page_content' ) ) : 
                while ( have_rows( 'page_content' ) ) : the_row();
    
    ?>
    
    <section>
    <?php get_template_part('partials/page-content/'. get_row_layout());?>
    </section>
    
    <?php
    endwhile; endif; 
    endwhile; endif;
    ?>