Title: SetMonkey13's Replies | WordPress.org

---

# SetMonkey13

  [  ](https://wordpress.org/support/users/setmonkey13/)

 *   [Profile](https://wordpress.org/support/users/setmonkey13/)
 *   [Topics Started](https://wordpress.org/support/users/setmonkey13/topics/)
 *   [Replies Created](https://wordpress.org/support/users/setmonkey13/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/setmonkey13/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/setmonkey13/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/setmonkey13/engagements/)
 *   [Favorites](https://wordpress.org/support/users/setmonkey13/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/users/setmonkey13/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/setmonkey13/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[jQuery T(-) Countdown Widget] ArgumentCountError thrown](https://wordpress.org/support/topic/argumentcounterror-thrown-14/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/argumentcounterror-thrown-14/#post-17242358)
 * Joy.
 * Thanks for the fix.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Display Gallery name under thumbnail](https://wordpress.org/support/topic/display-gallery-name-under-thumbnail/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [4 years ago](https://wordpress.org/support/topic/display-gallery-name-under-thumbnail/#post-15686059)
 * Wonderful. Thanks so much for your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Display Gallery name under thumbnail](https://wordpress.org/support/topic/display-gallery-name-under-thumbnail/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [4 years ago](https://wordpress.org/support/topic/display-gallery-name-under-thumbnail/#post-15682370)
 * That doesn’t show the correct gallery title for each image. Just one of the gallery
   titles no matter what image it is.
 *     ```
       <?php $this->start_element('nextgen_gallery.gallery_container', 'container', $displayed_gallery); ?>
   
       <div class="ngg-galleryoverview caption-view <?php if (!intval($ajax_pagination)) echo ' ngg-ajax-pagination-none'; ?>"
       	id="ngg-gallery-<?php echo esc_attr($displayed_gallery_id)?>-<?php echo esc_attr($current_page)?>">
           <div class="ngg-caption-view-wrapper">
               <?php $this->start_element('nextgen_gallery.image_list_container', 'container', $images); ?>
                   <?php
                   for ($i = 0; $i<count($images); $i++) {
                       $image = $images[$i];
                       $thumb_size = $storage->get_image_dimensions($image, $thumbnail_size_name);
                       $style = isset($image->style) ? $image->style : null;
                       $column_class = 'ngg-' . $number_of_columns . '-columns';
   
                       if (isset($image->hidden) && $image->hidden) {
                           $style = 'style="display: none;"';
                       } else {
                           $style = null;
                       }
   
                       $this->start_element('nextgen_gallery.image_panel', 'item', $image);
                       ?>
                           <div id="<?php echo esc_attr('ngg-image-' . $i) ?>" class="ngg-gallery-thumbnail-box <?php if ($number_of_columns > 0 && empty($show_all_in_lightbox)) { echo $column_class; } ?>" <?php if ($style) echo $style; ?>>
                               <?php $this->start_element('nextgen_gallery.image', 'item', $image); ?>
                                   <div class="ngg-gallery-thumbnail">
                                       <a href="<?php echo esc_attr($storage->get_image_url($image, 'full', TRUE))?>"
                                          title="<?php echo esc_attr($image->description)?>"
                                          data-src="<?php echo esc_attr($storage->get_image_url($image)); ?>"
                                          data-thumbnail="<?php echo esc_attr($storage->get_image_url($image, 'thumb')); ?>"
                                          data-image-id="<?php echo esc_attr($image->{$image->id_field}); ?>"
                                          data-title="<?php echo esc_attr($image->alttext); ?>"
                                          data-description="<?php echo esc_attr(stripslashes($image->description)); ?>"
                                          data-image-slug="<?php echo esc_attr($image->image_slug); ?>"
                                           <?php echo $effect_code ?>>
                                           <img title="<?php echo esc_attr($image->alttext)?>"
                                                alt="<?php echo esc_attr($image->alttext)?>"
                                                src="<?php echo esc_attr($storage->get_image_url($image, $thumbnail_size_name))?>"
                                                width="<?php echo esc_attr($thumb_size['width'])?>"
                                                height="<?php echo esc_attr($thumb_size['height'])?>"
                                                style="max-width:100%;"/>
   
                                       <?php echo $image->alttext ?></a><span>
                                       <br>
                                       <?php foreach ($displayed_gallery->get_galleries() as $gallery): ?>
                                           <?php $gallery_title = esc_html($gallery->title) ?>
                                           <?php endforeach ?>
                                       <?php echo $gallery_title?>
                                       <?php if (!isset($image->hidden) || !$image->hidden) { ?>
                                           <span style="max-width: <?php print esc_attr($thumb_size['width']); ?>px">
                                               <?php print $image->description; ?>
   
                                           </span>
                                       <?php } ?>
                                   </div>
                               <?php $this->end_element(); ?>
                           </div>
                       <?php $this->end_element(); ?>
                   <?php } ?>
               <?php $this->end_element(); ?>
           </div>
   
           <?php if (!empty($slideshow_link)) { ?>
               <div class="slideshowlink">
                   <a href='<?php echo esc_attr($slideshow_link) ?>'><?php echo esc_html($slideshow_link_text) ?></a>
               </div>
           <?php } ?>
   
           <?php if ($pagination) { ?>
               <?php echo $pagination ?>
           <?php } ?>
       </div>
   
       <?php $this->end_element(); ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery by FooGallery : Responsive Image Gallery, Masonry Gallery & Carousel] Simple Portfolio Thumbnail size](https://wordpress.org/support/topic/simple-portfolio-thumbnail-size/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/simple-portfolio-thumbnail-size/#post-11802532)
 * That new version seems to be working well. Thanks.
    -  This reply was modified 6 years, 9 months ago by [SetMonkey13](https://wordpress.org/support/users/setmonkey13/).
      Reason: maked as resolved
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery by FooGallery : Responsive Image Gallery, Masonry Gallery & Carousel] Simple Portfolio Thumbnail size](https://wordpress.org/support/topic/simple-portfolio-thumbnail-size/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/simple-portfolio-thumbnail-size/#post-11799450)
 * I did go back to the old version on the site after noticing it was loading blank
   squares. I can put the test version back on the site if that will help solve 
   the problem.
    Thanks for all the support.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery by FooGallery : Responsive Image Gallery, Masonry Gallery & Carousel] Simple Portfolio Thumbnail size](https://wordpress.org/support/topic/simple-portfolio-thumbnail-size/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/simple-portfolio-thumbnail-size/#post-11790766)
 * It fixed the size issue, but now only the thumbnails that are in view actually
   load. When I scroll down, the boxes are just empty.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Site Title / Logo in header](https://wordpress.org/support/topic/site-title-logo-in-header/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/site-title-logo-in-header/#post-8179742)
 * I am actually looking for the logo to the to the left of the title on the same
   line and the menu under both the logo and title.
 *     ```
            Logo     Title
       --- --- Menus --- --- ---
       ```
   
    -  This reply was modified 9 years, 8 months ago by [SetMonkey13](https://wordpress.org/support/users/setmonkey13/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Site Title / Logo in header](https://wordpress.org/support/topic/site-title-logo-in-header/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/site-title-logo-in-header/#post-8172977)
 * [http://magicalstarlight.org](http://magicalstarlight.org)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Single image page from gallery](https://wordpress.org/support/topic/single-image-page-from-gallery/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/single-image-page-from-gallery/#post-5166255)
 * Hi, was this issued fixed with the recent updates or should I hold off on updating
   NextGen, Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextGEN Custom Fields] Multisite](https://wordpress.org/support/topic/multisite-185/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/multisite-185/#post-5007032)
 * _::your\_website\_address::_/wp-admin/admin.php?page=nextgen-gallery-custom-fields/
   ngg-custom-fields.php&mode=upgrade
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Single image page from gallery](https://wordpress.org/support/topic/single-image-page-from-gallery/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/single-image-page-from-gallery/#post-5166043)
 * If I roll back to Ver 2.0.66 then its fine. Its a problem when I upgrade to 2.0.66.16.
   Looks like I will roll back for the time being.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Single image page from gallery](https://wordpress.org/support/topic/single-image-page-from-gallery/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/single-image-page-from-gallery/#post-5166040)
 * That’s how its set. But every image opens the JPG instead of the imagebrowser.
   I didn’t change. I didn’t have any problems till the last update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Single image page from gallery](https://wordpress.org/support/topic/single-image-page-from-gallery/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/single-image-page-from-gallery/#post-5166017)
 * Its set to No Lightbox.
 * I am trying to have it so that if I click on a thumbnail in a thumbnail gallery,
   the thumb opens/reloads the gallery using imagebrowser rather than a lightbox.
   
   For the gallery I have Use imagebrowser effect check as yes. It opens the JPG
   instead of the imagebrowser.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Single image page from gallery](https://wordpress.org/support/topic/single-image-page-from-gallery/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/single-image-page-from-gallery/#post-5165917)
 * [http://nutheatrestock.org/desks/](http://nutheatrestock.org/desks/)
    When clicking
   on a thumbnail it opens the JPG instead of going to [http://nutheatrestock.org/desks/nggallery/image/(image](http://nutheatrestock.org/desks/nggallery/image/(image)
   name)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Basic Thumbnail with different imagebrowser](https://wordpress.org/support/topic/basic-thumbnail-with-different-imagebrowser/)
 *  Thread Starter [SetMonkey13](https://wordpress.org/support/users/setmonkey13/)
 * (@setmonkey13)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/basic-thumbnail-with-different-imagebrowser/#post-5008046)
 * Sure. Sorry for the confusion.
    What I am wondering is possible: I create 2 pages
   each with its own gallery. (by clicking the “green button”) Gallery 1 on page
   1 is viewed as Basic Thumbnails and the gallery-caption.php template. Under the
   customizing section “Use imagebrowser effect” is clicked yes. The template that
   the imagebrowser uses is imagebrowser-caption.php (currently set up through the
   NGG general settings page). Gallery 2 on page 2 is viewed as Basic Thumbnails
   and the gallery-caption.php template. Under the customizing section “Use imagebrowser
   effect” is clicked yes. I would like this page to use the imagebrowser-exif.php
   template. Is that possible?
 * Does that make more sense?

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/users/setmonkey13/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/setmonkey13/replies/page/2/?output_format=md)