Photo Gallery by WD – Responsive Photo Gallery - Version 1.2.62

Version Description

Changed: Thumbnail click action.

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Photo Gallery by WD – Responsive Photo Gallery
Version 1.2.62
Comparing to
See all releases

Code changes from version 1.2.61 to 1.2.62

admin/models/BWGModelUninstall_bwg.php CHANGED
@@ -31,8 +31,12 @@ class BWGModelUninstall_bwg {
31
  $wpdb->query("DROP TABLE " . $wpdb->prefix . "bwg_theme");
32
  $wpdb->query("DROP TABLE " . $wpdb->prefix . "bwg_shortcode");
33
  delete_option("wd_bwg_version");
34
- setcookie('bwg_image_asc_or_desc', '');
35
- setcookie('bwg_image_order_by', '');
 
 
 
 
36
  // Delete terms.
37
  $terms = get_terms('bwg_tag', array('orderby' => 'count', 'hide_empty' => 0));
38
  foreach ($terms as $term) {
31
  $wpdb->query("DROP TABLE " . $wpdb->prefix . "bwg_theme");
32
  $wpdb->query("DROP TABLE " . $wpdb->prefix . "bwg_shortcode");
33
  delete_option("wd_bwg_version");
34
+ if (isset($_COOKIE['bwg_image_asc_or_desc'])) {
35
+ $_COOKIE['bwg_image_asc_or_desc'] = '';
36
+ }
37
+ if (isset($_COOKIE['bwg_image_order_by'])) {
38
+ $_COOKIE['bwg_image_order_by'] = '';
39
+ }
40
  // Delete terms.
41
  $terms = get_terms('bwg_tag', array('orderby' => 'count', 'hide_empty' => 0));
42
  foreach ($terms as $term) {
admin/views/BWGViewBWGShortcode.php CHANGED
@@ -744,13 +744,13 @@ class BWGViewBWGShortcode {
744
  </tbody>
745
 
746
  <!--Lightbox view-->
747
- <?php if ($option_row->thumb_click_action != 'open_lightbox') { ?>
748
  <tbody id="tbody_popup_other">
749
  <tr id="tr_thumb_click_action">
750
  <td class="spider_label"><label>Thumb click action: </label></td>
751
  <td>
752
  <input type="radio" name="thumb_click_action" id="thumb_click_action_1" value="open_lightbox" <?php if ($option_row->thumb_click_action == 'open_lightbox') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_1">Open lightbox</label><br />
753
- <input type="radio" name="thumb_click_action" id="thumb_click_action_2" value="redirect_to_url" <?php if ($option_row->thumb_click_action == 'redirect_to_url') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_2">Redirect to url</label>
 
754
  </td>
755
  </tr>
756
  <tr id="tr_thumb_link_target">
@@ -761,7 +761,6 @@ class BWGViewBWGShortcode {
761
  </td>
762
  </tr>
763
  </tbody>
764
- <?php } ?>
765
  <tbody id="tbody_popup">
766
  <tr id="tr_popup_fullscreen">
767
  <td title="Enable full width feature for the lightbox." class="spider_label">
@@ -1548,13 +1547,16 @@ class BWGViewBWGShortcode {
1548
  else {
1549
  jQuery("#popup_ctrl_btn_no").attr('checked', 'checked');
1550
  }
1551
- if (short_code['thumb_click_action'] != 'redirect_to_url' || !short_code['thumb_click_action']) {
1552
  jQuery("#thumb_click_action_1").attr('checked', 'checked');
1553
  }
1554
- else {
1555
  jQuery("#thumb_click_action_2").attr('checked', 'checked');
1556
  }
1557
- if (short_code['thumb_link_target'] == 1 || !short_code['thumb_link_target']) {
 
 
 
1558
  jQuery("#thumb_link_target_yes").attr('checked', 'checked');
1559
  }
1560
  else {
744
  </tbody>
745
 
746
  <!--Lightbox view-->
 
747
  <tbody id="tbody_popup_other">
748
  <tr id="tr_thumb_click_action">
749
  <td class="spider_label"><label>Thumb click action: </label></td>
750
  <td>
751
  <input type="radio" name="thumb_click_action" id="thumb_click_action_1" value="open_lightbox" <?php if ($option_row->thumb_click_action == 'open_lightbox') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_1">Open lightbox</label><br />
752
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_2" value="redirect_to_url" <?php if ($option_row->thumb_click_action == 'redirect_to_url') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_2">Redirect to url</label><br />
753
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_3" value="do_nothing" <?php if ($option_row->thumb_click_action == 'do_nothing') echo 'checked="checked"'; ?> onchange="bwg_thumb_click_action()" /><label for="thumb_click_action_3">Do Nothing</label>
754
  </td>
755
  </tr>
756
  <tr id="tr_thumb_link_target">
761
  </td>
762
  </tr>
763
  </tbody>
 
764
  <tbody id="tbody_popup">
765
  <tr id="tr_popup_fullscreen">
766
  <td title="Enable full width feature for the lightbox." class="spider_label">
1547
  else {
1548
  jQuery("#popup_ctrl_btn_no").attr('checked', 'checked');
1549
  }
1550
+ if (!short_code['thumb_click_action'] || short_code['thumb_click_action'] == 'undefined' || short_code['thumb_click_action'] == 'open_lightbox') {
1551
  jQuery("#thumb_click_action_1").attr('checked', 'checked');
1552
  }
1553
+ else if (short_code['thumb_click_action'] == 'redirect_to_url') {
1554
  jQuery("#thumb_click_action_2").attr('checked', 'checked');
1555
  }
1556
+ else if (short_code['thumb_click_action'] == 'do_nothing') {
1557
+ jQuery("#thumb_click_action_3").attr('checked', 'checked');
1558
+ }
1559
+ if (short_code['thumb_link_target'] == 1 || !short_code['thumb_link_target'] || short_code['thumb_link_target'] == 'undefined') {
1560
  jQuery("#thumb_link_target_yes").attr('checked', 'checked');
1561
  }
1562
  else {
admin/views/BWGViewOptions_bwg.php CHANGED
@@ -1358,6 +1358,7 @@ class BWGViewOptions_bwg {
1358
  <td>
1359
  <input type="radio" name="thumb_click_action" id="thumb_click_action_1" value="open_lightbox" <?php if ($row->thumb_click_action == 'open_lightbox') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_thumb_link_target', 'thumb_click_action_1')" /><label for="thumb_click_action_1">Open lightbox</label>
1360
  <input type="radio" name="thumb_click_action" id="thumb_click_action_2" value="redirect_to_url" <?php if ($row->thumb_click_action == 'redirect_to_url') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_thumb_link_target', 'thumb_click_action_2')" /><label for="thumb_click_action_2">Redirect to url</label>
 
1361
  <div class="spider_description"></div>
1362
  </td>
1363
  </tr>
@@ -1634,7 +1635,7 @@ class BWGViewOptions_bwg {
1634
  window.onload = bwg_enable_disable(<?php echo $row->slideshow_enable_title ? "'', 'tr_slideshow_title_position', 'slideshow_enable_title_yes'" : "'none', 'tr_slideshow_title_position', 'slideshow_enable_title_no'" ?>);
1635
  window.onload = bwg_enable_disable(<?php echo $row->slideshow_enable_description ? "'', 'tr_slideshow_description_position', 'slideshow_enable_description_yes'" : "'none', 'tr_slideshow_description_position', 'slideshow_enable_description_no'" ?>);
1636
  window.onload = bwg_enable_disable(<?php echo $row->slideshow_enable_music ? "'', 'tr_slideshow_music_url', 'slideshow_enable_music_yes'" : "'none', 'tr_slideshow_music_url', 'slideshow_enable_music_no'" ?>);
1637
- window.onload = bwg_enable_disable(<?php echo $row->thumb_click_action == 'open_lightbox' ? "'none', 'tr_thumb_link_target', 'thumb_click_action_1'" : "'', 'tr_thumb_link_target', 'thumb_click_action_2'" ?>);
1638
  window.onload = preview_watermark();
1639
  window.onload = preview_built_in_watermark();
1640
  </script>
1358
  <td>
1359
  <input type="radio" name="thumb_click_action" id="thumb_click_action_1" value="open_lightbox" <?php if ($row->thumb_click_action == 'open_lightbox') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_thumb_link_target', 'thumb_click_action_1')" /><label for="thumb_click_action_1">Open lightbox</label>
1360
  <input type="radio" name="thumb_click_action" id="thumb_click_action_2" value="redirect_to_url" <?php if ($row->thumb_click_action == 'redirect_to_url') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('', 'tr_thumb_link_target', 'thumb_click_action_2')" /><label for="thumb_click_action_2">Redirect to url</label>
1361
+ <input type="radio" name="thumb_click_action" id="thumb_click_action_3" value="do_nothing" <?php if ($row->thumb_click_action == 'do_nothing') echo 'checked="checked"'; ?> onClick="bwg_enable_disable('none', 'tr_thumb_link_target', 'thumb_click_action_3')" /><label for="thumb_click_action_3">Do Nothing</label>
1362
  <div class="spider_description"></div>
1363
  </td>
1364
  </tr>
1635
  window.onload = bwg_enable_disable(<?php echo $row->slideshow_enable_title ? "'', 'tr_slideshow_title_position', 'slideshow_enable_title_yes'" : "'none', 'tr_slideshow_title_position', 'slideshow_enable_title_no'" ?>);
1636
  window.onload = bwg_enable_disable(<?php echo $row->slideshow_enable_description ? "'', 'tr_slideshow_description_position', 'slideshow_enable_description_yes'" : "'none', 'tr_slideshow_description_position', 'slideshow_enable_description_no'" ?>);
1637
  window.onload = bwg_enable_disable(<?php echo $row->slideshow_enable_music ? "'', 'tr_slideshow_music_url', 'slideshow_enable_music_yes'" : "'none', 'tr_slideshow_music_url', 'slideshow_enable_music_no'" ?>);
1638
+ window.onload = bwg_enable_disable(<?php echo $row->thumb_click_action == 'redirect_to_url' ? "'', 'tr_thumb_link_target', 'thumb_click_action_2'" : "'none', 'tr_thumb_link_target', 'thumb_click_action_" . ($row->thumb_click_action == 'open_lightbox' ? 1 : 3) . "'"; ?>);
1639
  window.onload = preview_watermark();
1640
  window.onload = preview_built_in_watermark();
1641
  </script>
frontend/views/BWGViewAlbum_compact_preview.php CHANGED
@@ -783,7 +783,7 @@ class BWGViewAlbum_compact_preview {
783
  $thumb_top = ($params['compuct_album_image_thumb_height'] - $image_thumb_height) / 2;
784
  ?>
785
 
786
- <a <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '"' . ($options_row->enable_seo ? ' href="' . ($is_embed ? $image_row->thumb_url : site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url) . '"' : '') . ' data-image-id="' . $image_row->id . '" data-gallery-id="' . $album_gallery_id . '"') : ($image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
787
  <span class="bwg_standart_thumb_<?php echo $bwg; ?>">
788
  <?php
789
  if ($params['compuct_album_image_title'] == 'show' && $theme_row->album_compact_thumb_title_pos == 'top') {
783
  $thumb_top = ($params['compuct_album_image_thumb_height'] - $image_thumb_height) / 2;
784
  ?>
785
 
786
+ <a <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '"' . ($options_row->enable_seo ? ' href="' . ($is_embed ? $image_row->thumb_url : site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url) . '"' : '') . ' data-image-id="' . $image_row->id . '" data-gallery-id="' . $album_gallery_id . '"') : ($params['thumb_click_action'] == 'redirect_to_url' && $image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
787
  <span class="bwg_standart_thumb_<?php echo $bwg; ?>">
788
  <?php
789
  if ($params['compuct_album_image_title'] == 'show' && $theme_row->album_compact_thumb_title_pos == 'top') {
frontend/views/BWGViewAlbum_extended_preview.php CHANGED
@@ -764,7 +764,7 @@ class BWGViewAlbum_extended_preview {
764
  $thumb_left = ($params['extended_album_image_thumb_width'] - $image_thumb_width) / 2;
765
  $thumb_top = ($params['extended_album_image_thumb_height'] - $image_thumb_height) / 2;
766
  ?>
767
- <a <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '"' . ($options_row->enable_seo ? ' href="' . ($is_embed ? $image_row->thumb_url : site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url) . '"' : '') . ' data-image-id="' . $image_row->id . '" data-gallery-id="' . $album_gallery_id . '"') : ($image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
768
  <span class="bwg_standart_thumb_<?php echo $bwg; ?>">
769
  <span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>">
770
  <span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
764
  $thumb_left = ($params['extended_album_image_thumb_width'] - $image_thumb_width) / 2;
765
  $thumb_top = ($params['extended_album_image_thumb_height'] - $image_thumb_height) / 2;
766
  ?>
767
+ <a <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '"' . ($options_row->enable_seo ? ' href="' . ($is_embed ? $image_row->thumb_url : site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url) . '"' : '') . ' data-image-id="' . $image_row->id . '" data-gallery-id="' . $album_gallery_id . '"') : ($params['thumb_click_action'] == 'redirect_to_url' && $image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
768
  <span class="bwg_standart_thumb_<?php echo $bwg; ?>">
769
  <span class="bwg_standart_thumb_spun1_<?php echo $bwg; ?>">
770
  <span class="bwg_standart_thumb_spun2_<?php echo $bwg; ?>">
frontend/views/BWGViewImage_browser.php CHANGED
@@ -499,7 +499,7 @@ class BWGViewImage_browser {
499
  }
500
  if (!$is_embed) {
501
  ?>
502
- <a style="position:relative;" <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '" data-image-id="' . $image_row->id . '"') : ($image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
503
  <img class="bwg_image_browser_img_<?php echo $bwg; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url; ?>" alt="<?php echo $image_row->alt; ?>" />
504
  </a>
505
  <?php
499
  }
500
  if (!$is_embed) {
501
  ?>
502
+ <a style="position:relative;" <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '" data-image-id="' . $image_row->id . '"') : ($params['thumb_click_action'] == 'redirect_to_url' && $image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
503
  <img class="bwg_image_browser_img_<?php echo $bwg; ?>" src="<?php echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url; ?>" alt="<?php echo $image_row->alt; ?>" />
504
  </a>
505
  <?php
frontend/views/BWGViewThumbnails.php CHANGED
@@ -433,7 +433,7 @@ class BWGViewThumbnails {
433
  $thumb_left = ($params['thumb_width'] - $image_thumb_width) / 2;
434
  $thumb_top = ($params['thumb_height'] - $image_thumb_height) / 2;
435
  ?>
436
- <a <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '"' . ($options_row->enable_seo ? ' href="' . ($is_embed ? $image_row->thumb_url : site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url) . '"' : '') . ' data-image-id="' . $image_row->id . '"') : ($image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
437
  <span class="bwg_standart_thumb_<?php echo $bwg; ?>">
438
  <?php
439
  if ($params['image_title'] == 'show' and $theme_row->thumb_title_pos == 'top') {
433
  $thumb_left = ($params['thumb_width'] - $image_thumb_width) / 2;
434
  $thumb_top = ($params['thumb_height'] - $image_thumb_height) / 2;
435
  ?>
436
+ <a <?php echo ($params['thumb_click_action'] == 'open_lightbox' ? (' class="bwg_lightbox_' . $bwg . '"' . ($options_row->enable_seo ? ' href="' . ($is_embed ? $image_row->thumb_url : site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_row->image_url) . '"' : '') . ' data-image-id="' . $image_row->id . '"') : ($params['thumb_click_action'] == 'redirect_to_url' && $image_row->redirect_url ? 'href="' . $image_row->redirect_url . '" target="' . ($params['thumb_link_target'] ? '_blank' : '') . '"' : '')) ?>>
437
  <span class="bwg_standart_thumb_<?php echo $bwg; ?>">
438
  <?php
439
  if ($params['image_title'] == 'show' and $theme_row->thumb_title_pos == 'top') {
photo-gallery.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Photo Gallery
5
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
6
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
7
- * Version: 1.2.61
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -2335,7 +2335,7 @@ function bwg_activate() {
2335
  ));
2336
  }
2337
  $version = get_option("wd_bwg_version");
2338
- $new_version = '1.2.61';
2339
  if ($version && version_compare($version, $new_version, '<')) {
2340
  require_once WD_BWG_DIR . "/update/bwg_update.php";
2341
  bwg_update($version);
@@ -2383,7 +2383,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
2383
 
2384
  function bwg_update_hook() {
2385
  $version = get_option("wd_bwg_version");
2386
- $new_version = '1.2.61';
2387
  if ($version && version_compare($version, $new_version, '<')) {
2388
  require_once WD_BWG_DIR . "/update/bwg_update.php";
2389
  bwg_update($version);
4
  * Plugin Name: Photo Gallery
5
  * Plugin URI: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
6
  * Description: This plugin is a fully responsive gallery plugin with advanced functionality. It allows having different image galleries for your posts and pages. You can create unlimited number of galleries, combine them into albums, and provide descriptions and tags.
7
+ * Version: 1.2.62
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
2335
  ));
2336
  }
2337
  $version = get_option("wd_bwg_version");
2338
+ $new_version = '1.2.62';
2339
  if ($version && version_compare($version, $new_version, '<')) {
2340
  require_once WD_BWG_DIR . "/update/bwg_update.php";
2341
  bwg_update($version);
2383
 
2384
  function bwg_update_hook() {
2385
  $version = get_option("wd_bwg_version");
2386
+ $new_version = '1.2.62';
2387
  if ($version && version_compare($version, $new_version, '<')) {
2388
  require_once WD_BWG_DIR . "/update/bwg_update.php";
2389
  bwg_update($version);
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Gallery ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
4
- Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic
5
  Requires at least: 3.4
6
  Tested up to: 4.3
7
- Stable tag: 1.2.61
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -132,7 +132,7 @@ Greek (el)
132
  Hebrew (he_IL)
133
  Hindi (hi_IN)
134
  Hungarian (hu_HU)
135
- Icelandic (is_IS) by Eggert Johannesson
136
  Indonesian (id_ID)
137
  Italian (it_IT)
138
  Japanese (ja)
@@ -214,6 +214,9 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
214
 
215
  == Changelog ==
216
 
 
 
 
217
  = 1.2.61 =
218
  Added: Filter by tags in frontend.
219
 
1
  === Gallery ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-photo-gallery-plugin.html
4
+ Tags: photo, photo gallery, image gallery, video gallery, gallery, galleries, wordpress gallery plugin, images gallery, album, photo albums, simple gallery, best gallery plugin, free photo gallery, wp gallery, wordpress gallery, website gallery, gallery shortcode, best gallery, picture, pictures, gallery slider, photo album, photogallery, widget gallery, image, images, photos, gallery lightbox, photoset, wordpress photo gallery plugin, wp gallery plugins, responsive wordpress photo gallery, media, image album, filterable gallery, banner rotator, fullscreen gallery, fotogalerie, galleria, galerie, galeri, responsive gallery, add album, add gallery, add pictures, fotoalbum, foto, gallery decription, multiple pictures, photoalbum, upload images, upload photos, view images, view pictures, admin, AJAX, comments, gallery image, image lightbox, image rotate, image slideshow, image slider, jquery, jquery gallery, slide show, slideshow, thumbnail, thumbnail view, thumbnails, thumbs, responsive, watermarking, watermarks,fullscreen slider, lightbox, photography, sidebar, slide, youtube, vimeo, videos, instagram, facebook, mosaic, facebook integration
5
  Requires at least: 3.4
6
  Tested up to: 4.3
7
+ Stable tag: 1.2.62
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
132
  Hebrew (he_IL)
133
  Hindi (hi_IN)
134
  Hungarian (hu_HU)
135
+ Icelandic (is_IS) by Eggert Johannesson
136
  Indonesian (id_ID)
137
  Italian (it_IT)
138
  Japanese (ja)
214
 
215
  == Changelog ==
216
 
217
+ = 1.2.62 =
218
+ Changed: Thumbnail click action.
219
+
220
  = 1.2.61 =
221
  Added: Filter by tags in frontend.
222