To get the image URL for an image field type in Advanced Custom Fields (ACF) Repeater Field
<?php if( have_rows('repeater_field_name') ): ?>
<?php while( have_rows('repeater_field_name') ): the_row();
// vars
$image = get_sub_field('image');
?>
<img src="<?php echo $image['url']; ?>" />
<?php endwhile; ?>
<?php endif; ?>
Let me know if this helped. Follow me on Twitter, Facebook and YouTube, or 🍊 buy me a smoothie.
Not working………………image path broken
shows 404 error
Not working
after this please echo your image