Hi
Still love Elevate. Decided to re-do and expand site still using Elevate rather than swtich to another theme.
In functions file you have:
//* Add featured image above the entry content
add_action( ‘genesis_entry_header’, ‘elevate_featured_photo’, 5 );
function elevate_featured_photo() {
if ( is_attachment() || ! genesis_get_option( ‘content_archive_thumbnail’ ) )
return;
if ( is_singular() && $image = genesis_get_image( array( ‘format’ => ‘url’, ‘size’ => genesis_get_option( ‘image_size’ ) ) ) ) {
printf( ‘<div class=”featured-image”>
</div>’, $image, the_title_attribute( ‘echo=0’ ) );
}
}
Seems like it’s the second If statement that needs to change?
Please help! I’ve tried a lot of things but can’t get it to work.
Thanks.
Bud