Dear processwire folks,
i am trying to output the description of a file field within a repeater,
but despite extensive forum search I can't find the right syntax.
Here is one of my approaches:
<?php
foreach($page->mp3_repeater as $mp3) {
echo "<li><a href='#' data-src='/processwire/site/templates/audio/$mp3->mp3_url'>$mp3->$file->description</a></li>";
}
?>
Thanks for your help.