Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi

    This should be possible:

    1. Upload the image to your gallery.
    2. Set the image as preview image.
    3. Select the checkbox in the Exclude column
    Thread Starter edumusa

    (@edumusa)

    Thanks niknetniko,
    but when i check the exclude box, it excludes as preview image.
    I have to say: in the new updated nextgen, it’s working….

    I’m afraid this isn’t possible without altering NextCellent code then.

    I will take a look to add this feature, but I don’t know when and if it is possible. If you really need this, I suggest you use NextGEN ??

    Thread Starter edumusa

    (@edumusa)

    ok thanks, it’s not a rush, i’m still with nextcellent, a excellent workaround on nextgen, By now I’m just using a regular image from gallery as preview, perhaps later i’ll have to change this…

    Plugin Author WPReady

    (@wpready)

    Workaround:

    add_filter(“ngg_image_object”,”hide_specific_image”,1);
    function hide_specific_image($picture)
    {
    //61 is the specific image to hide.
    if ($picture->pid == 61) {
    $picture->hidden=true;
    }
    return $picture;
    }

    Same feature needed here – I would want to have an intro image that shows only as a preview image, but not in the opened gallery lightbox itself.
    I found a workaround:
    setup preview image – save gallery
    tick exclude preview image – save

    But this method needs to be done every time after editing the gallery, which is a bit troublesome.

    It would be best to include this feature in the code itself, please?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘preview image not to show on gallery’ is closed to new replies.