Blog Page & Featured Image issues

Homepage Community Forums Aspire Theme Support Blog Page & Featured Image issues

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #18038
    meggerz24
    Customer

      I 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?

      #18039
      Wes
      Moderator

        You 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.

        #18041
        meggerz24
        Customer

          So, 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.

          #18043
          meggerz24
          Customer

            I 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.

            #18044
            meggerz24
            Customer

              I 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!

              #18045
              Wes
              Moderator

                Sorry, I’ve been in and out all day. Let me take a sec to see what’s going on.

                #18047
                Wes
                Moderator

                  Not 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' ) );
                  	}
                  
                  }
                Viewing 7 posts - 1 through 7 (of 7 total)
                • You must be logged in to reply to this topic.