Could you post the modifications you made to WP Carousel to fix the image error you mentioned?
Are you sure you are showing the image you want? I see this image: http://recessionitis.com/wp-content/uploads/2011/07/Poor-Mans-Guide-Thumbnail-Template-150×150.png. And it is 150x150px.
Thread Starter
PogiVC
(@pogivc)
I changed:
<div class="panel_image" style="background:url(<?php echo $item['IMAGE_URL']; ?>) 5<px 0px; width:<?php echo $temp_panel_width; ?>; height:<?php echo $temp_panel_height; ?>;">
and
<div class="panel_image" style="background:url(<?php echo $item['IMAGE_URL']; ?>) 5px 0px; width:<?php echo $temp_panel_width; ?>; height:<?php echo $temp_panel_height; ?>;">
Changed 5 to zero, fixing a clipping problem is was having.
I’m confident it’s sized at 170×170; here’s the link from my Media Library on WP:
http://recessionitis.com/2011/hdtv/poor-mans-guide-to-a-home-entertainment-theater/attachment/poor-mans-guide-thumbnail-template-3/
Under featured image, I have checked Full Size (170×170), but perhaps your plugin is calling for the thumbnail size (150×150)?
Ironically, the thumbnail was working correctly before, but yesterday I deleted and re-installed the plug-in, so perhaps the problem is a recent change you’ve made?
I’ll review your changes.
And about the thumbnail, check the Help tab. There is an answer that explains how to change the default image size that uses WP Carousel when loads the image from the post thumnail.
The code is: define('WP_CAROUSEL_DEFAULT_THUMBNAIL_SIZE', 'thumbnail');
It is located on line 95 in wp-carousel.php.
You can use “medium” and “large” as values (as well as “thumbnail”). Maybe the problem was that you changed that value and when you reinstalled the plugin that change was lost. Try it and if it does not work, I’ll look for other solution.
Thanks for posting the fix!