Report abuse

Thumbnail/images displaying issue:

Its cause of some servers doesn't support the timthumb script I used for auto resizing the images.

Please follow the bellow instructions.

Please open slider.php and find the bellow code:

<img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=
                            <?php echo get_post_meta($post->ID, "Image", $single = true); ?>&amp;h=180&amp;w=360&amp;zc=1" alt="<?php the_title(); ?>"/>

and replace with the bellow code:

<img src="<?php echo get_post_meta($post->ID, "Image", $single = true); ?>" alt="<?php the_title(); ?>" width="360" height="180"/>

and open the archive.php and find bellow code:

<img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=
                            <?php echo get_post_meta($post->ID, "Image", $single = true); ?>&amp;h=120&amp;w=180&amp;zc=1" alt="<?php the_title(); ?>"/>

and replace with the bellow code:

<img src="<?php echo get_post_meta($post->ID, "Image", $single = true); ?>" alt="<?php the_title(); ?>" width="180" height="120"/>

and finally open index.php and spot the bellow code:

<img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=
                            <?php echo get_post_meta($post->ID, "Image", $single = true); ?>&amp;h=120&amp;w=180&amp;zc=1" alt="<?php the_title(); ?>"/>

and replace with the bellow one:

<img src="<?php echo get_post_meta($post->ID, "Image", $single = true); ?>" alt="<?php the_title(); ?>" width="180" height="120"/>

I hope the above one will help you all for whom slider, home page and portfolio thumbnails doesn't work.

thanks
ram