Forum Replies Created
-
AuthorPosts
-
Make sure you set the thread as “resolved”
Update: Nevermind I see you did!
Nevermind I figured it out.
Yes, I’ve already tried it and it doesn’t work. Is it because it’s a plugin or..?
Anyone?
No problem
Took some time to find this, I actually did the same to my blog a couple weeks back.
To 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.
/** 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( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) ); } } -
AuthorPosts