I am really sorry to bother you guys again ...
I also have a checkbox List that has an ID team_member_position
This does not work :
<?php $values = rwmb_meta( 'team_member_position' ); ?>
<ul>
<?php foreach ( $values as $value ) : ?>
<li><?= $value ?></li>
<?php endforeach ?>
</ul>
I have checked the docs, and basically none of the solution fits, because this is a list of multiple choices AND cloneable values, can you pls help me one more time.
Question is also where do I put this new code, can I use two foreaches ?
<?php $teams = rwmb_meta( 'team_group', ['object_type' => 'setting'], 'custom_settings' ); ?>
<ul>
<?php foreach ( $teams as $team ) : ?>
<li><?php echo $team['team_member_image'].' -> Name '.$team['team_member_name']; ?></li>
<?php endforeach; ?>
**** NEW CODE ****
</ul>