Home › Community Forums › Aspire Theme Support › Blog Page & Featured Image issues
Tagged: aspire, blog page, blog posts, featured image
- This topic has 6 replies, 2 voices, and was last updated 7 years ago by
Wes.
-
AuthorPosts
-
May 16, 2016 at 12:41 pm #18038
meggerz24
CustomerI love this theme and have been able to customize it a lot for what I need. The only lingering issue I’m having is with the blog page and posts.
My blog page doesn’t look at all like the template page in the demo. It’s showing the whole post instead of a snippet and it doesn’t show the featured image on the blog page.
When you click on the blog entry, the post page shows a GIANT Featured Image.
Questions are:
1. What is wrong with my blog template page that it’s not showing correctly?
2. How can I removed the Featured Image from the post page but make sure it shows on the blog page?May 16, 2016 at 1:33 pm #18039Wes
ModeratorYou can adjust that on the Genesis Settings page. Take a look in the
Content Archives
section to enable the featured image as well as the Content Limit.May 16, 2016 at 1:43 pm #18041meggerz24
CustomerSo, I’m still having a very strange issue if you’d like to look.
http://nodemarketingsolutions.com/blog/
http://nodemarketingsolutions.com/lessons-from-a-metronome/the image still doesn’t show up on the blog page. and when you click on the entry it shows TWO images, including a giant featured image at the top….
I definitely have it set up in Content Archives correctly.
May 16, 2016 at 2:09 pm #18043meggerz24
CustomerI see the problem on the post page but I don’t know how to fix it.
div class= “site inner”
::before
div class=”egwp_featured_image”how do I remove that div class? I don’t know why it’s there and that isn’t a genesis hook either.
I tried to remove it with the genesis_before_content_sidebar_wrap hook but that’s not working. I could have the coding wrong though.May 16, 2016 at 3:42 pm #18044meggerz24
CustomerI solved it by adding this to my CSS
}
.egwp_featured_image {
display: none;
}I am experiencing this across all of my genesis websites right now so I can’t be the only one!
May 16, 2016 at 4:06 pm #18045Wes
ModeratorSorry, I’ve been in and out all day. Let me take a sec to see what’s going on.
May 16, 2016 at 9:14 pm #18047Wes
ModeratorNot sure if you’re still trying to remove the Featured Image that appears on Single Posts or not, but if you want to you can do so by removing this in your functions.php file –
//* 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' ) ); } }
-
AuthorPosts
- You must be logged in to reply to this topic.