Support

Account

Home Forums ACF PRO How to achieve this (with repeater fields)? Reply To: How to achieve this (with repeater fields)?

  • Will look into that, thanks Jarvis!

    I found a video as well with custom code, tried to use it but got critical errors when code is executed 🙁

    Basic code for just extracting data:

    <?php if(have_rows('affiliateproviders')):?>
    
    <?php while( have_rows('affiliateproviders')): the_row;?>
    
    	 <?php the_sub_field('logoaanb');?>
    
    <?php endwhile;?>
    
    <?php endif;?>

    Someone familiar with this as well?