Add an image link to a repeater field "test_2" should be replaced by your repeater name "image_link_url" should be replaced by the url link field "link_image" should be replaced by your image field you also need to make sure that in your ACF settings under your image field your return value is set to image url
//* Display Your Field
add_action( 'genesis_before_entry_content', 'test_2' );
function test_2() {
$rows = get_field('test_2');
if($rows)
{
echo '<ul>';
foreach($rows as $row)
{
echo '<li><a href="' . $row['image_link_url'] .'"><img class="" src="' . $row['link_image'] .'" /></a></li>';
}
echo '</ul>';
}
}
genesis();