Support

Account

Home Forums Add-ons Repeater Field display repeater fields with nested Reply To: display repeater fields with nested

  • im using this code but it dosent work it dosent show anything:

    <?php if( have_rows(‘tarifs’) ): ?>
    <div id=”tarifs”>
    <?php while( have_rows(‘tarifs’) ): the_row(); ?>
    <div>
    <h3><?php the_sub_field(‘forfait’); ?></h3>

    <?php if( have_rows(‘seances_et_bilans’) ): ?>

      <?php while( have_rows(‘seances_et_bilans’) ): the_row(); ?>

    • <?php the_sub_field(‘date_seance’); ?>
      <?php the_sub_field(‘seance’); ?>
      <?php the_sub_field(‘date_bilan’); ?>
      <?php the_sub_field(‘bilan’); ?>
    • <?php endwhile; ?>

    <?php endif; ?>
    </div>

    <?php endwhile; ?>
    </div>
    <?php endif; ?>