I've just upgraded to Lifestyle Version 4 (downloaded from the Forum). Images no longer show on Home Page. I've checked my home.php and it's calling a custom field "thumb" for both the top featured sections and the bottom featured section... earlier versions had a custom field of "thumbnail" and "hpbottom".
So I change the custom field to "thumb" and now I am getting the alt text but not the image.
Here's what it states in the code... mentions "thumbnail" but calls for "thumb"
Code:
<?php // This is where the thumbnails are found for the homepage bottom section - note the custom field name for this image is "thumbnail". Recommended image size is 70x70, as the stylesheet is written for this size. ?>
<?php $recent = new WP_Query("cat=".get_theme_mod('featured_top_right')."&showposts=".get_theme_mod('featured_top_right_num')); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "thumb", true) ): ?>
Is there a problem with the files I downloaded for Version 4.0?