• 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://ww.wp.xz.cn/extend/plugins/wordpress-nextgen-galleryview/

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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!

    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.