[resolved] Thumbnails missing
-
Quick fix for the problem:
1. Go to slideshow-gallery.php line 168, then you should find the code like this:
$slides[$skey] -> image_path = 'wp-content/uploads/slideshow-gallery/' . $slide -> image;Change to,
$slides[$skey] -> image_path = get_bloginfo( 'url' ) . '/wp-content/uploads/slideshow-gallery/' . $slide -> image;2. For viewing problem in Manage Slides page, find the plugin folder “slideshow-gallery\views\admin\slides\loop.php” line 52, find the code like this:
<a href="<?php echo $this -> Html -> image_url($image); ?>" title="<?php echo $slide -> title; ?>" class="colorbox" rel="slides"><img class="slideshow" src="<?php echo $this -> Html -> timthumb_image_src($slide -> image_path, 40, 40, 100); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" /></a>Change to,
<a href="<?php echo $this -> Html -> image_url($image); ?>" title="<?php echo $slide -> title; ?>" class="colorbox" rel="slides"><img class="slideshow" src="<?php echo $this -> Html -> timthumb_image_src(get_bloginfo('url').'/'.$slide -> image_path, 40, 40, 100); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" /></a>The problem is the plugin can’t locate the image location. Hope this will helps.
The topic ‘[resolved] Thumbnails missing’ is closed to new replies.