[Plugin: Frontpage-Slideshow] Images not loading : Possible fix?
-
Hi,
My plugin unique ID is: 10220. WordPress 3.0
I’ve also had problems with images not loading on the static home page of my website when using version 0.9.9.3.3. As suggested in other posts, I downgraded to 0.9.8 but the problem still remained with images not being loaded. Also, as noted by others, the only way to get the slideshow to work was to do a CTRL-F5.
I made the following changes to “frontpage-slideshow.php” and these seem to have fixed the problem:
Line 81: Commented out the code to add the fsDoSlide() function
//if ($id == $fslast) $fscontent .= ‘ onload=”fsDoSlide()”‘; // put this to make another loop after the last imageLine 222: Added the following code after frontpageSlideshow() function.
jQuery(document).ready(function () {
fsDoSlide();
});I think I had a conflict with another widget that was also using jQuery, but the above code changes seem to work without having to deactivate or change any other plugin.
I have not tested the code change in version 0.9.8
- The topic ‘[Plugin: Frontpage-Slideshow] Images not loading : Possible fix?’ is closed to new replies.