When creating a showcase you probably need to show extra information for telephone numbers, position or e-mail. For this extra information (metadata) we can assign custom meta fields.
Admin side
If any meta data is created it will show up in the meta data field in team-showcase->members. Here you can fill in the member info that is needed in the showcase.
Only meta data is shown for the selected team showcase. if no team is selected there will be no meta data fields visible.
Config side
When creating a skin folder you can create your own meta fields in the config.php
For this you need to add it
This will show a new meta text field in wp-admin that has the label 'Position'
Html side
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"] : "" )