To load the content from the meta field into the html we need to add two things in the card.php or info.php
In top of the file we add
$member_meta = get_post_meta(get_the_ID(), "aws_ts_member_meta", true)
then in the code itself we can add this code to show the content when it is added into the meta field
echo ( isset($member_meta["position"]) ? $member_meta["position"] : "" )