Hi, I can’t seem to be able to display the repeater field and would love to understand why. All help is much appreciated! This is the code I’m using:
<div class="infusion-ingredientes-iconos">
<?php if ( have rows ('infu_ingredientes_iconos') ) : ?>
<ul>
<?php while( have_rows ('infu_ingredientes_iconos') ) : the_row(); ?>
<img src="<?php get_sub_field('infu_ing_icono');?>" />
<div>
«span class="infu-ing-titulo"><?php get_sub_field('infu_ing_titulo');?></span>
<a href="<?php get_sub_field('infu_ing_link' );?>"><?php get_sub_field('infu_ing_btn');?></a>
</div>
<?php endwhile; ?>
<?php endif: ?>