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); ?>&h=180&w=360&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); ?>&h=120&w=180&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); ?>&h=120&w=180&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