Just wrap the content echo with a do_shortcode function:
<?= do_shortcode($post->post_content); ?>
Sorry its taken someone so long to answer this question.
After digging around, I have discovered that you have to specifically list support for featured images by adding it to the add_theme_support function call in your functions.php for your skin.
Like this:
add_theme_support( ‘post-thumbnails’ );
add_theme_support( ‘post-thumbnails’, array( ‘page’, ‘post’, ‘team_manager’ ) );
That will add the ability to have featured images on your pages, posts AND team list.
I am having the same issues as muse6992.
There is no featured image section that you are explaining. It just doesn’t appear there.
I also don’t seem to be able to get the ordering working correctly either (it doesn’t work no matter what I set it to).
Is this plugin compatible with the latest version of wp?