Community Forums › Forums › Archived Forums › Design Tips and Tricks › Problem with Content Archives (Thumbnail image)
Tagged: content archives, generate, image sizes, themes, thumbnail
- This topic has 5 replies, 2 voices, and was last updated 12 years, 9 months ago by
avaldez87.
-
AuthorPosts
-
January 25, 2013 at 7:00 pm #14920
avaldez87
MemberHi everyone
I have a problem with my new wordpress blog. I'm using generate child theme for this one. My website is http://ingemarketero.com/. The problem is that whenever I create a post I get the featured image at the deafult size. I don't want to have this size I want it on thumbnail size.
I have changed content archives section to other options including thumbnail size as you can see here http://i.imgur.com/GvFvWzp.png. But is not changing at all. I have deleted other posts because this "large rectangular" image was showing so you will not be able to see it on real time.
I also have deactivated all my plugins and eliminated most of them. And this hasn't change. Can someone let me know what to do? I really will appreciate it I'm in pain haha
January 25, 2013 at 7:52 pm #14927wpspeak
MemberWell, if you're using Generate, you have to change the thumbnail size from the home.php file. Open you theme editor, you'll see something like this:
2,
'feature_image_size' => 0,
'feature_image_class' => 'alignleft post-image',
'feature_content_limit' => 0,
'grid_image_size' => 'grid-thumbnail',
'grid_image_class' => 'alignleft post-image',
'grid_content_limit' => 0,
'more' => __( '[Continue reading...]', 'genesis' ),
) );
} else {
genesis_standard_loop();
}
}/** Remove the post meta function for front page only **/
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );genesis();
Here's the size for feature post:
'feature_image_size' => 0,And for the grid
'grid_image_size' => 'grid-thumbnail',You may refer here http://my.studiopress.com/tutorials/genesis-grid-loop/
January 25, 2013 at 7:53 pm #14929wpspeak
MemberSorry, seems the post editor stripped my code. Btw, you can still see the same code from the link I provided you above.
January 26, 2013 at 11:05 am #15026avaldez87
MemberHey thanks a lot, I'll try this
And do you know how to get rid of the featured images? Thanks
January 26, 2013 at 12:09 pm #15035wpspeak
MemberDo you mean the featured image of the feature or grid?
See the link I provided above.
To remove featured image from the grid, set "grid_image_size" to 0.
'grid_image_size' => '0',Everything is explained on the page from the link I provided above.
January 26, 2013 at 1:38 pm #15047avaldez87
MemberHey! Now it's solved. Thanks so much for your help. Really appreciate it 🙂
-
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.