Support

Account

Home Forums Backend Issues (wp-admin) Issue with acf/fields/flexible_content/layout_title & repeater fields Reply To: Issue with acf/fields/flexible_content/layout_title & repeater fields

  • Hi @newjenk

    The image field will send the image ID in the AJAX request, so you need to get the image URL from this ID. I think you can use the wp_get_attachment_image_src() function to do that. So, it should be like this:

    $image_id = $row['field_1234567890abc'];
    $image_data = wp_get_attachment_image_src($image_id, 'full');
    
    if( $image_data ){
        $image_url = $image_data[0];
        echo $image_url;
    }

    Where “field_1234567890abc” is the image field key.

    Hope this helps 🙂