Viewing 2 replies - 1 through 2 (of 2 total)
  • Nope, not theme related; it’s all from the plugin.

    You can move the title (name/title) above the avatar/featured image by placing the following code snippet in your theme functions.php:

    add_filter( 'woothemes_our_team_item_template', 'new_team_member_template' );
    function new_team_member_template( $tpl ) {
    	$tpl = '<div itemscope itemtype="https://schema.org/Person" class="%%CLASS%%">%%TITLE%% %%AVATAR%% <div id="team-member-%%ID%%"  class="team-member-text" itemprop="description">%%TEXT%% %%AUTHOR%%</div></div>';
        return $tpl;
    }
    Thread Starter ashhunt75

    (@ashhunt75)

    Great, thanks Amber worked a treat.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Move Featured Image Below Title’ is closed to new replies.