April 17, 2015 at 11:21 am
#24115
Theme Horse Support Team
Keymaster
Hi christian,
We have designed our theme this way. If you don’t want featured image to display then it needs code customization. You just go to the theme folder-> inc-> structure-> content-extension.php and go to line no 276 to 287 and you will find this below code.
<?php
if( has_post_thumbnail() ) {
$image = '';
$title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) );
$image .= '<figure class="post-featured-image">';
$image .= '<a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">';
$image .= get_the_post_thumbnail( $post->ID, 'featured', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
$image .='<span class="arrow"></span>';
$image .= '</figure>';
echo $image;
}
} ?>
Remove this above code and your featured image will not be displayed. Before making any changes first of all create a child theme then only customize the code to be safe from data loss while updating to our new version. If you feel its difficult then remove it from core file. But after new version update you need to do the above process again and again whenever you update.
Thank you!