Add a text link to a repeater field "test" should be replaced by your repeater name "test_button_url" should be replaced by the url link field "test_button_text" should be replaced by the text field for your label or button
<?php
// Template Name:test
//* Display Your Field
add_action( 'genesis_before_entry_content', 'test' );
function test() {
$rows = get_field('test');
if($rows)
{
echo '<ul>';
foreach($rows as $row)
{
echo '<li><a href="' . $row['test_button_url'] .'">' . $row['test_button_text'] .' </a></li>';
}
echo '</ul>';
}
}