• Hello,

    I am using NextGen Gallery 1.5.3 and NextGen Galleryview 1.0.1. It is working perfectly in Firefox, but the thumbnails are not showing in Internet Explorer 8 (and possibly in other versions too).

    Is there an upgrade to the Galleryview plugin? I have a download for Galleryview 2.0, but don’t know how to integrate it into WordPress.

    I have struggled a lot to try to get this working, with no success.

    What is wrong?

    Thanks,

    Lavern

    https://www.ads-software.com/extend/plugins/nextgen-gallery/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Did you check the site source? Is img src="" present for each thumbnail, but the image just isn’t showing up? I ran into that situation for a full image in the imagebrowser: if height and width are empty in the HTML, the image wouldn’t show up in IE8.

    In the image browser template page, I rewrote the image link to go to the next image when clicked:
    nextgen-gallery/view/imagebrowser.php:

    <div class="pic">
    	<a href="<?php echo $image->next_image_link; ?>" title="Next Image">
    	<img src="<?php echo $image->imageURL ?>" alt="<?php $image->alttext ?>" width="500" />
    	</a>
    </div>

    I had trouble getting a dynamic width and height, so just I added the max width for the space — my images are resized to a width of 500 in the Gallery Options. This could be any number. I only set one in my link rewrite, because the height is flexible.

    You could do something similar for thumbnails, I’m guessing in
    nextgen-gallery/view/gallery.php
    Maybe album.php as well.

    Let me know if this helps! You can view my version of it here: https://www.suttonrv.com/blog/index.php/category/photos/

    Hey marcy,

    thanks for your solution but i still has some problems with the dynamic width.. (maybe it is because english is not my mother language..)

    My website is https://www.galeriaestandarte.com/?page_id=7

    where do you add the max-width? i want to keep the height constant in the thumbnails and let the width be proportional… this works with every browser… except IE8!

    do you have any idea?

    thank you in advance

    ps. btw, your website is super cool

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: NextGEN Gallery] Thumbnails not showing in Internet Explorer’ is closed to new replies.