Photo Gallery by WD – Responsive Photo Gallery - Version 1.2.89

Version Description

  • Fixed: Possibility to set featured image for gallery custom post types.
  • Fixed: Masonry album thumbnail container transparency.
  • Fixed: Share conflict with Jetpack.
  • Fixed: Load more.
Download this release

Release Info

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

Code changes from version 1.2.88 to 1.2.89

framework/WDWLibrary.php CHANGED
@@ -493,6 +493,9 @@ class WDWLibrary {
493
  else {
494
  $items_county = ($count_items - $count_items % $limit) / $limit;
495
  }
 
 
 
496
  }
497
  else {
498
  $items_county = 1;
493
  else {
494
  $items_county = ($count_items - $count_items % $limit) / $limit;
495
  }
496
+ if ($pagination == 2) {
497
+ $items_county++;
498
+ }
499
  }
500
  else {
501
  $items_county = 1;
languages/bwg-nl_NL.mo CHANGED
Binary file
languages/bwg-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2016-01-08 10:32+0400\n"
5
- "PO-Revision-Date: 2016-02-12 18:05+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl\n"
@@ -250,7 +250,7 @@ msgstr "e-mail "
250
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1308
251
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1315
252
  msgid "Comment"
253
- msgstr "Reactie"
254
 
255
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1298
256
  msgid "Verification Code"
2
  msgstr ""
3
  "Project-Id-Version: bwg\n"
4
  "POT-Creation-Date: 2016-01-08 10:32+0400\n"
5
+ "PO-Revision-Date: 2016-02-22 14:08+0400\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl\n"
250
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1308
251
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1315
252
  msgid "Comment"
253
+ msgstr "Commentaar"
254
 
255
  #: C:\wamp\www\wordpress\wp-content\plugins\photo-gallery\frontend/views/BWGViewGalleryBox.php:1298
256
  msgid "Verification Code"
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.88
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -1903,7 +1903,7 @@ function bwg_activate() {
1903
  ));
1904
  }
1905
  $version = get_option("wd_bwg_version");
1906
- $new_version = '1.2.88';
1907
  if ($version && version_compare($version, $new_version, '<')) {
1908
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1909
  bwg_update($version);
@@ -1951,7 +1951,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
1951
 
1952
  function bwg_update_hook() {
1953
  $version = get_option("wd_bwg_version");
1954
- $new_version = '1.2.88';
1955
  if ($version && version_compare($version, $new_version, '<')) {
1956
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1957
  bwg_update($version);
@@ -2181,10 +2181,10 @@ function bwg_create_post_type() {
2181
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_option WHERE id="%d"', 1));
2182
 
2183
  if ($row->show_hide_post_meta == 1) {
2184
- $show_hide_post_meta = array('editor', 'comments');
2185
  }
2186
  else {
2187
- $show_hide_post_meta = array();
2188
  }
2189
  if ($row->show_hide_custom_post == 0) {
2190
  $show_hide_custom_post = false;
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.89
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
1903
  ));
1904
  }
1905
  $version = get_option("wd_bwg_version");
1906
+ $new_version = '1.2.89';
1907
  if ($version && version_compare($version, $new_version, '<')) {
1908
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1909
  bwg_update($version);
1951
 
1952
  function bwg_update_hook() {
1953
  $version = get_option("wd_bwg_version");
1954
+ $new_version = '1.2.89';
1955
  if ($version && version_compare($version, $new_version, '<')) {
1956
  require_once WD_BWG_DIR . "/update/bwg_update.php";
1957
  bwg_update($version);
2181
  $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'bwg_option WHERE id="%d"', 1));
2182
 
2183
  if ($row->show_hide_post_meta == 1) {
2184
+ $show_hide_post_meta = array('editor', 'comments', 'thumbnail', 'title');
2185
  }
2186
  else {
2187
+ $show_hide_post_meta = array('thumbnail', 'title');
2188
  }
2189
  if ($row->show_hide_custom_post == 0) {
2190
  $show_hide_custom_post = false;
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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, 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, instagram feed, Flickr, Dailymotion, widget, youtube gallery, ecommerce
5
  Tested up to: 4.4
6
- Stable tag: 1.2.88
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -219,6 +219,12 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
219
 
220
  == Changelog ==
221
 
 
 
 
 
 
 
222
  = 1.2.88 =
223
  * Fixed: Prevent javascript errors with empty options.
224
  * Changed: Dutch translation (Thanks to Gerben H. Dijkstra).
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, 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, instagram feed, Flickr, Dailymotion, widget, youtube gallery, ecommerce
5
  Tested up to: 4.4
6
+ Stable tag: 1.2.89
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
219
 
220
  == Changelog ==
221
 
222
+ = 1.2.89 =
223
+ * Fixed: Possibility to set featured image for gallery custom post types.
224
+ * Fixed: Masonry album thumbnail container transparency.
225
+ * Fixed: Share conflict with Jetpack.
226
+ * Fixed: Load more.
227
+
228
  = 1.2.88 =
229
  * Fixed: Prevent javascript errors with empty options.
230
  * Changed: Dutch translation (Thanks to Gerben H. Dijkstra).