Hi,
I have setup a setting page for team members
<?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; ?>
</ul>
The code works fine, but instead of the image I get the ID of the image displayed, how can I display the image
For the image I am using the field type : Single Image