I also do! I am about to add a custom-made slideshow to my website with custom field suite. I am also using the loop:
<figure role=”group”>
<?php
$fields = $cfs->get(‘bilder’);
foreach ($fields as $field) { ?>
<figure>
<img src=”<?php echo $field[‘bild’]; ?>” alt=”” title=””>
</figure>
<?php } ?>
</figure>
Does someone has a solution for this? I want to get every alt and title tag for every image.