March 12, 2015 at 5:08 am
#23009
Theme Horse Support Team
Keymaster
Hi guitaristforhim,
You need code customisation for it. You just simply go to the theme folder(interface)-> inc -> structure -> header -extension.php
Can you see this code
if( has_post_thumbnail() ) {
$interface_featured_post_slider .= '<figure><a href="' . get_permalink() . '" title="'.the_title('','',false).'">';
$interface_featured_post_slider .= get_the_post_thumbnail( $post->ID, $slider_size, array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ).'</a></figure>';
}
if( $title_attribute != '' || $excerpt !='' ) {
$interface_featured_post_slider .= '
<article class="featured-text">';
if( $title_attribute !='' ) {
$interface_featured_post_slider .= '<div class="featured-title"><a href="' . get_permalink() . '" title="'.the_title('','',false).'">'. get_the_title() . '</a></div><!-- .featured-title -->';
}
if( $excerpt !='' ) {
$interface_featured_post_slider .= '<div class="featured-content">'.$excerpt.'</div><!-- .featured-content -->';
}
$interface_featured_post_slider .= '
</article><!-- .featured-text -->';
}
remove this code and add this code
if( has_post_thumbnail() ) {
$interface_featured_post_slider .= '<figure><a href="#" title="'.the_title('','',false).'">';
$attitude_featured_post_slider .= get_the_post_thumbnail( $post->ID, $slider_size, array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ).'</a></figure>';
}
if( $title_attribute != '' || $excerpt !='' ) {
$interface_featured_post_slider .= '
<article class="featured-text">';
if( $title_attribute !='' ) {
$interface_featured_post_slider .= '<div class="featured-title"><a href="#" title="'.the_title('','',false).'">'. get_the_title() . '</a></div><!-- .featured-title -->';
}
if( $excerpt !='' ) {
$interface_featured_post_slider .= '<div class="featured-content">'.$excerpt.'</div><!-- .featured-content -->';
}
$interface_featured_post_slider .= '
</article><!-- .featured-text -->';
}
We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.
http://codex.wordpress.org/Child_Themes
Thank you!