Title: [Plugin: WordPress NextGen GalleryView] feature request and load time issue
Last modified: August 19, 2016

---

# [Plugin: WordPress NextGen GalleryView] feature request and load time issue

 *  [daan](https://wordpress.org/support/users/dhoitink/)
 * (@dhoitink)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-wordpress-nextgen-galleryview-feature-request-and-load-time-issue/)
 * first of all thanks for this great addon to nextgen.
 * A nice feature would be the ability to add a (colored) border to the pictures.
   Perhaps within the option page. Or is there a manual entry possible?
 * Currently i’m using the plugin on a 60+ nextgen gallery. there is no cache feature
   and the plugin first loads all the pictures (60x200kb) means over 10Mb of load
   time…. Author: Have a look on how Nextgen resolves this issue.
 * [http://wordpress.org/extend/plugins/wordpress-nextgen-galleryview/](http://wordpress.org/extend/plugins/wordpress-nextgen-galleryview/)

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

 *  [Kire_i](https://wordpress.org/support/users/kire_i/)
 * (@kire_i)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-nextgen-galleryview-feature-request-and-load-time-issue/#post-1765006)
 * Yes there is a problem with the time loading… I just studied a code which shows
   imediately the first immages and basecaly :
 * There is a function which counts the number of images loaded when it is bigger
   then 3 the slideshow function is called and it starts that’s all
 * I have no experience in javascript so if the administrator could add it it would
   be awesome and the plugin would be complete!
 *  [Kire_i](https://wordpress.org/support/users/kire_i/)
 * (@kire_i)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-nextgen-galleryview-feature-request-and-load-time-issue/#post-1765007)
 * Here is what i found! Can anyone integrate it in the WordPress NextGen GalleryView
   to solve the time issue?
 *  function loadImage(num) {
    if (stackLength > 0 && num <= 3) { var img = new 
   Image(); img.src = stack.shift(); stackLength–; jQuery(img).bind(‘load’, function(){
   appendImage(img, num); }); } }
 *  function appendImage(img, num) {
    jQuery(img).hide(); jQuery(obj).append(imageResize(
   img, s.width, s.height)); if (num == 3 || stackLength == 0) { startSlideshow();}
   else { loadImage(++num); } }

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

The topic ‘[Plugin: WordPress NextGen GalleryView] feature request and load time
issue’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wordpress-nextgen-galleryview.svg)
 * [WordPress NextGen GalleryView](https://wordpress.org/plugins/wordpress-nextgen-galleryview/)
 * [Support Threads](https://wordpress.org/support/plugin/wordpress-nextgen-galleryview/)
 * [Active Topics](https://wordpress.org/support/plugin/wordpress-nextgen-galleryview/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wordpress-nextgen-galleryview/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wordpress-nextgen-galleryview/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Kire_i](https://wordpress.org/support/users/kire_i/)
 * Last activity: [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-nextgen-galleryview-feature-request-and-load-time-issue/#post-1765007)
 * Status: not resolved