Community Forums › Forums › General Discussion › Streamline theme: pictures auto creates itself when adding a photo
This topic contains 5 replies, has 4 voices, and was last updated by dougweiss 5 months, 1 week ago.
-
AuthorPosts
-
December 8, 2012 at 6:49 pm #3916
Hey,
not sure if this is a more advanced thing…..
but whenever I add a picture to a post, the theme automatically generates a picture above the post, in its own separate section. I thought it was a thumbnail thing and disabled thumbnails. But that;s not the case.
I only need 1 photo and this is annoying. I have a feeling it’s in the css or something? I have a feeling the theme is set up to do this automatically?
Any idea on how I can fix?
Thank you.
-
This topic was modified 5 months, 2 weeks ago by
jstar.
-
This topic was modified 5 months, 2 weeks ago by
jstar.
December 8, 2012 at 7:01 pm #3920You might want to put in a Support Ticket on that one.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsDecember 8, 2012 at 7:13 pm #3924I agree with Anita – submit a support ticket…
But, in the meantime, are you checking the “featured” image box, and inserting the image into a post? I believe if you do that, it will generate a duplicate image.
Also, you should go ahead and include a link to your site when you ask a question on the board here – it makes it easier to troubleshoot if we can see your site.

Susan @ Graphically Designing I’d love to customize your website! I tweet!
I’ve taken up the challenge! – help me answer some of the unanswered postsDecember 8, 2012 at 7:28 pm #3927thanks guys.
I will send a support ticket.
and just in case anyone was curisous, i did not have “featured” image box checked.
Thanks!
December 8, 2012 at 7:47 pm #3928I know you said you disabled thumbnails, but check this, too:
Go to Genesis -> Settings -> Content Archives and uncheck the box to show thumbnails on archive page.
Susan @ Graphically Designing I’d love to customize your website! I tweet!
I’ve taken up the challenge! – help me answer some of the unanswered postsDecember 10, 2012 at 11:02 pm #4399To remove the large featured image above the post, open up the functions.php in the child theme folder.
Find this section of code and remove it.
[PHP]
/** Add post image above post title */
add_action( ‘genesis_before_post’, ‘streamline_post_image’ );
function streamline_post_image() {if ( is_page() ) return;
if ( $image = genesis_get_image( ‘format=url&size=post-image’ ) ) {
printf( ‘‘, get_permalink(), $image, the_title_attribute( ‘echo=0′ ) );
}}[/PHP]
-
This topic was modified 5 months, 2 weeks ago by
-
AuthorPosts
You must be logged in to reply to this topic.