I figured it out!
<?php $series = get_sub_field(‘series’); ?>
<?php foreach ($series as $serie): ?><?php echo $serie[‘value’]; ?><?php endforeach; ?>
output label like this
<?php foreach ($series as $serie): ?><?php echo $serie[‘label’]; ?><?php endforeach; ?>
Sorry for the late response. i got
Warning: implode(): Invalid arguments passed
I checked, and the field is returning an array
Thank you. I wrote it as an array and it works. I guess the array is necessary in order to sort the data before displaying it.
Thank you! That worked perfectly!