Hi @jfk
It is possible that one of the followin is causing the issue:
* Your ACF functions are place outside the posts loop – All code relevant to the post should be within the loop
* Double check that award_logos
is the correct field name for the repeater field
You can also debug the repeater field value like so:
<?php
echo '<pre>';
print_r( get_field('award_logos') );
echo '</pre>';
die;
?>