Support

Account

Home Forums Add-ons Repeater Field The repeater sub_field bug with wp media image

Helping

The repeater sub_field bug with wp media image

  • Hi,

    (approximative english, sorry)

    I’m using the repeater add on since yesterday, and something went wrong.
    I have created some sub fields to create a slider on my website. Each slide is composed of a NAME, DESCRIPTION and a WP MEDIA IMAGE.

            // check if the repeater field has rows of data
            if( have_rows('slider') ):
    
                // loop through the rows of data
                while ( have_rows('slider') ) : the_row();
    
                    // display a sub field value
                    $titre = the_sub_field('titre');
                    $sous_titre = the_sub_field('sous_titre');
                    $image = the_sub_field('image');
    
                endwhile;
    
            endif;

    The 2 firsts sub field are ok, but the image field returns an error, saying :

    Notice: Array to string conversion in /home/.../wp-content/plugins/advanced-custom-fields/core/api.php on line 687
    119, , cote-rose, , , image/jpeg, http://.../rose.jpg, 2000, 1187, Array

    What have I done wrong ?

    Thx

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘The repeater sub_field bug with wp media image’ is closed to new replies.