Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #53867

    Hi,
    My site is StonecropSister.com. I downloaded the theme yesterday, and had no issues with defining 4 posts and their featured images for the slider.
    Today I added a new post.
    On the main page, the header has my header image, and my slider images are showing up ok, including the featured image of the newest post.
    but when I click into that post, it is now showing the featured image of that post as the header image.
    what am I doing wrong. I have looked at the other posts, and they look identical in the settings.

    thanks,
    Nancy

    #53913
    Sakin
    Keymaster

    @stonecropsister: If you have just added this theme in your old site then first you need to regenerate thumbnails using plugin Regenerate Thumbnail. It’s mentioned in theme instructions page at http://catchthemes.com/theme-instructions/catch-evolution/

    Then, as per Catch Evolution Free version, The header image is supposed to be changing with the featured image of post/page. Only in Pro version you have option to make it different or same.

    If you want same image to display in all page, maybe you want to try uploading image as logo from “Appearance => Theme Options => Header Options”.

    But if you want to use header image and want same header image to show in all pages/posts then you need to build child theme. For child them check out http://catchthemes.com/blog/create-child-theme-wordpress/. Then add the following function in you child theme functions.php file

    function catchevolution_featured_header() { 
    	global $_wp_default_headers;
    	// Header Image
    	$header_image_path = get_header_image();
    	if ( get_header_image() ) : ?>
    		<div id="header-image">
    			<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
    		</div>
    	<?php endif; 
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘featured image on post now appearing as header image on post’ is closed to new replies.