Tagged Questions
1
vote
1answer
222 views
Cropping thumbnails to specific dimensions on front end post
Probably not the best title description but here we go. One of my custom post types is for youtube videos which I take the thumb from youtube and upload it as a thumbnail for the post. Now it's easy ...
1
vote
1answer
323 views
How to crop thumbnail height to auto with set width
I'm looking for a way to only set the width of a thumbnail size and let the height set auto. So if I have two images. One is 600px/420px and one is 600px/600px. I want to set only the width of the ...
1
vote
1answer
546 views
Wordpress fails to auto crop featured images
I set 2 crop sizes in the functions.php file.
// Setup Post Thumbnails
// -----------------------------------------------
add_theme_support('post-thumbnails');
add_image_size('imagePost-thumb', 970, ...
2
votes
2answers
648 views
Cropped featured image replaces original image in gallery
Firstly, I have done my research as thoroughly as I possibly can. Searches have been made, but I have not found any advice or solution as to my exact issue.
Ok, time to explain.
Currently I am ...
0
votes
1answer
325 views
Featured Image Thumbnail Sizing
IMAGE HERE: http://i.stack.imgur.com/W2NI1.jpg
The image on the left is what it is currently looking like.
I used developer tools to change the width & height of all the image fields for the ...
0
votes
2answers
168 views
Using catch_the_image to get the thumbnail size
I use front end posting on my site so I don't get a chance to set a featured image for alot of my posts. So I use catch_the_image to get thumbs but it gets the original size and then scales it which ...
0
votes
1answer
450 views
WordPress image crop probems
i'm developing a portfolio theme on WordPress 3.2.1, so i created a new post_type called 'portfolio'. My aim is to show, on the front-end, a grid composed by the jobs i realized during last years.
...
2
votes
2answers
743 views
Cropped thumbnail still displaying as full image
Steps to reproduce...
1) Add to functions.php:
add_image_size( 'half-size', 200, 200, false );
2) Add to template file (inside loop):
<a href="<?php the_permalink(); ?>" title="<?php ...
0
votes
2answers
247 views
Server B handling add_image_size() differently than Server A
I'm curious what dependencies add_image_size() has because I just copied a theme over to a new server and began adding thumbnails to custom post types only to find out that my request for ...