Reply To: Blog Posts Page

Homepage Community Forums Ambition Blog Posts Page Reply To: Blog Posts Page

#19226
Wes
Moderator

    “I guess you did this for me previously? Or either I did it correctly and just didn鈥檛 know how to clear my cache on mobile devices!”

    Nope, that was all you 馃檪 When I logged in I didn’t need to change or adjust anything since it was already setup. So all the adjustments that you made are the reason it was working. It probably was your cache showing the old version of the site. When I make edits to the CSS I usually just click my Reload button so the new changes show up.

    To remove the featured images from showing on regular Single Pages, look in your functions.php file and remove or comment out this code –

    //* Add featured image above the entry content
    add_action( 'genesis_entry_header', 'aspire_featured_photo', 5 );
    function aspire_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"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
    	}
    
    }