Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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