Support

Account

Home Forums Add-ons Repeater Field Repeater not displayed… Reply To: Repeater not displayed…

  • I do this

    acf menu

    <?php if( have_rows('repeat') ):
     	// loop through the rows of data
        while ( have_rows('repeat') ) : the_row();
            // display a sub field value
            the_sub_field('galery-head');
    		the_sub_field('galery-rep');
        endwhile;
    else :
        // no rows found
    endif;
    ?>		

    Result:

    Наша парикмахерскаяArray, Array, Array, Array, Array, Array, Array, ArrayНаш солярийArray, Array, Array, Array

    And if you do so:

    <?php
    
    global $post;
    
    if( have_rows('repeat', $post->ID ) ):
    
     	// loop through the rows of data
        while ( have_rows('repeat', $post->ID ) ) : the_row();
    
            // display a sub field value
            	the_sub_field('galery-head');
    		the_sub_field('galery-rep');
    
        endwhile;
    
    else :
    
        // no rows found
    
    endif;
    
    ?>

    The result is the same…