Title: [resolved] Thumbnails missing
Last modified: August 20, 2016

---

# [resolved] Thumbnails missing

 *  [lucastheluke](https://wordpress.org/support/users/lucastheluke/)
 * (@lucastheluke)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/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.
 * [http://wordpress.org/extend/plugins/slideshow-gallery/](http://wordpress.org/extend/plugins/slideshow-gallery/)

Viewing 7 replies - 1 through 7 (of 7 total)

 *  [alaxvong](https://wordpress.org/support/users/alaxvong/)
 * (@alaxvong)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/resolved-thumbnails-missing/#post-3445212)
 * This didn’t work for me unfortunately. The plug-in works fine locally without
   this fix, but when I try it on the host the thumbnails are blank (substitute 
   image holder in chrome) as if the image doesn’t exist. I think an important note
   is when I downloaded the plug-in to my host, I had to create the “slideshow-gallery”
   folder manually. Is this a server side issue?
 *  [handobg](https://wordpress.org/support/users/handobg/)
 * (@handobg)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/resolved-thumbnails-missing/#post-3445219)
 * Good Job! Ty
 *  [onlinko](https://wordpress.org/support/users/onlinko/)
 * (@onlinko)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/resolved-thumbnails-missing/#post-3445225)
 * Thank u man, this solve my problem! Great!
 *  [nodynu](https://wordpress.org/support/users/nadinecamille/)
 * (@nadinecamille)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/resolved-thumbnails-missing/#post-3445226)
 * I tried this, however, it didn’t seem to work :/ Thumbnails are still not displayng.
 *  [superflymonkeyboy](https://wordpress.org/support/users/superflymonkeyboy/)
 * (@superflymonkeyboy)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/resolved-thumbnails-missing/#post-3445228)
 * Thanks lucastheluke. Genius. It worked for me. Let’s hope they remember to put
   these lines in any subsequent update.
 *  [mesvil7](https://wordpress.org/support/users/mesvil7/)
 * (@mesvil7)
 * [13 years ago](https://wordpress.org/support/topic/resolved-thumbnails-missing/#post-3445233)
 * I also change these in slideshow-gallery/views/default/gallery.php
 *     ```
       <img src="<?php echo $this -> Html -> timthumb_image_src($slide -> image_path, $this -> get_option('thumbwidth'), $this -> get_option('thumbheight'), 100); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" />
       ```
   
 * change to:
 * `<img src="<?php echo $this -> Html -> timthumb_image_src(get_bloginfo('url').'/'.
   $slide -> image_path, $this -> get_option('thumbwidth'), $this -> get_option('
   thumbheight'), 100); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> 
   title); ?>" />`
    _[Please post code & markup between backticks or use the code
   button. Your posted code may now have been permanently damaged by the forum’s
   parser.]_
 * in line 51. I think if you want you can change all the path in the images present
   there.
 * It worked for me.
 *  [Sultan](https://wordpress.org/support/users/sultan_semmaiyahoocom/)
 * (@sultan_semmaiyahoocom)
 * [13 years ago](https://wordpress.org/support/topic/resolved-thumbnails-missing/#post-3445236)
 * [@mesvil7](https://wordpress.org/support/users/mesvil7/) you are great!!!!!!!!
   
   your code also work for me

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘[resolved] Thumbnails missing’ is closed to new replies.

 * ![](https://ps.w.org/slideshow-gallery/assets/icon-256x256.png?rev=1187457)
 * [Slideshow Gallery LITE](https://wordpress.org/plugins/slideshow-gallery/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/slideshow-gallery/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/slideshow-gallery/)
 * [Active Topics](https://wordpress.org/support/plugin/slideshow-gallery/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/slideshow-gallery/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/slideshow-gallery/reviews/)

## Tags

 * [image](https://wordpress.org/support/topic-tag/image/)
 * [missing](https://wordpress.org/support/topic-tag/missing/)
 * [thumbnail](https://wordpress.org/support/topic-tag/thumbnail/)
 * [thumbnails missing](https://wordpress.org/support/topic-tag/thumbnails-missing/)

 * 7 replies
 * 8 participants
 * Last reply from: [Sultan](https://wordpress.org/support/users/sultan_semmaiyahoocom/)
 * Last activity: [13 years ago](https://wordpress.org/support/topic/resolved-thumbnails-missing/#post-3445236)
 * Status: not resolved