Version Description
- Fixed: Titles in mosaic view after load more.
- Fixed: JS error on slideshow view.
- Fixed: Slideshow on IE11.
- Fixed: Captcha dose not appear after submit.
Download this release
Release Info
Developer | webdorado |
Plugin | Photo Gallery by WD – Responsive Photo Gallery |
Version | 1.4.15 |
Comparing to | |
See all releases |
Code changes from version 1.4.14 to 1.4.15
- frontend/views/BWGViewGalleryBox.php +3 -1
- js/bwg_frontend.js +4 -4
- js/bwg_gallery_box.js +1 -0
- photo-gallery.php +3 -3
- readme.txt +7 -1
frontend/views/BWGViewGalleryBox.php
CHANGED
@@ -136,7 +136,9 @@ class BWGViewGalleryBox {
|
|
136 |
'enable_image_pinterest' => $enable_image_pinterest,
|
137 |
'enable_image_tumblr' => $enable_image_tumblr,
|
138 |
'watermark_type' => $watermark_type,
|
139 |
-
'slideshow_effect_duration' => $slideshow_effect_duration
|
|
|
|
|
140 |
);
|
141 |
if ($watermark_type != 'none') {
|
142 |
$params_array['watermark_link'] = $watermark_link;
|
136 |
'enable_image_pinterest' => $enable_image_pinterest,
|
137 |
'enable_image_tumblr' => $enable_image_tumblr,
|
138 |
'watermark_type' => $watermark_type,
|
139 |
+
'slideshow_effect_duration' => $slideshow_effect_duration,
|
140 |
+
'popup_enable_captcha' => $popup_enable_captcha,
|
141 |
+
'popup_enable_email' => $popup_enable_email,
|
142 |
);
|
143 |
if ($watermark_type != 'none') {
|
144 |
$params_array['watermark_link'] = $watermark_link;
|
js/bwg_frontend.js
CHANGED
@@ -2203,10 +2203,10 @@ function bwg_popup_resize_slidshow( bwg ) {
|
|
2203 |
bwg_resize_instagram_post( bwg );
|
2204 |
/* Set watermark container size. */
|
2205 |
bwg_change_watermark_container( bwg );
|
2206 |
-
var filmstrip_container_css = (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? '
|
2207 |
-
|
2208 |
-
|
2209 |
-
jQuery(".bwg_slideshow_filmstrip_"+bwg).css(
|
2210 |
jQuery(".bwg_slideshow_dots_container_"+bwg).css({width: bwg_params[bwg]['image_width'] });
|
2211 |
jQuery("#bwg_slideshow_play_pause-ico_"+bwg).css({fontSize: (bwg_params[bwg]['slideshow_play_pause_btn_size'])});
|
2212 |
jQuery(".bwg_slideshow_watermark_image_"+bwg).css({maxWidth: bwg_params[bwg]['watermark_width'], maxHeight: bwg_params[bwg]['watermark_height']});
|
2203 |
bwg_resize_instagram_post( bwg );
|
2204 |
/* Set watermark container size. */
|
2205 |
bwg_change_watermark_container( bwg );
|
2206 |
+
var filmstrip_container_css = (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? 'width: ' + bwg_params[bwg]['image_width'] : 'height: ' + bwg_params[bwg]['image_height'];
|
2207 |
+
var filmstrip_css = (bwg_params[bwg]['filmstrip_direction'] == 'horizontal') ? 'width: ' + (bwg_params[bwg]['image_width'] - 40) : 'height: ' + (bwg_params[bwg]['image_height'] - 40);
|
2208 |
+
jQuery(".bwg_slideshow_filmstrip_container_" + bwg).css({ cssText: filmstrip_container_css });
|
2209 |
+
jQuery(".bwg_slideshow_filmstrip_"+bwg).css({ cssText: filmstrip_css });
|
2210 |
jQuery(".bwg_slideshow_dots_container_"+bwg).css({width: bwg_params[bwg]['image_width'] });
|
2211 |
jQuery("#bwg_slideshow_play_pause-ico_"+bwg).css({fontSize: (bwg_params[bwg]['slideshow_play_pause_btn_size'])});
|
2212 |
jQuery(".bwg_slideshow_watermark_image_"+bwg).css({maxWidth: bwg_params[bwg]['watermark_width'], maxHeight: bwg_params[bwg]['watermark_height']});
|
js/bwg_gallery_box.js
CHANGED
@@ -221,6 +221,7 @@ function spider_ajax_save(form_id) {
|
|
221 |
jQuery(".bwg_comments").mCustomScrollbar({scrollInertia: 150});
|
222 |
/* Bind comment container close function to close button. */
|
223 |
jQuery(".bwg_comments_close_btn").click(bwg_comment);
|
|
|
224 |
}
|
225 |
});
|
226 |
return false;
|
221 |
jQuery(".bwg_comments").mCustomScrollbar({scrollInertia: 150});
|
222 |
/* Bind comment container close function to close button. */
|
223 |
jQuery(".bwg_comments_close_btn").click(bwg_comment);
|
224 |
+
bwg_captcha_refresh('bwg_captcha');
|
225 |
}
|
226 |
});
|
227 |
return false;
|
photo-gallery.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Photo Gallery
|
4 |
* Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/
|
5 |
* 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.
|
6 |
-
* Version: 1.4.
|
7 |
* Author: Photo Gallery Team
|
8 |
* Author URI: https://10web.io/pricing/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -81,8 +81,8 @@ final class BWG {
|
|
81 |
$this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
|
82 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
83 |
$this->main_file = plugin_basename(__FILE__);
|
84 |
-
$this->plugin_version = '1.4.
|
85 |
-
$this->db_version = '1.4.
|
86 |
$this->prefix = 'bwg';
|
87 |
$this->nicename = __('Photo Gallery', $this->prefix);
|
88 |
|
3 |
* Plugin Name: Photo Gallery
|
4 |
* Plugin URI: https://10web.io/plugins/wordpress-photo-gallery/
|
5 |
* 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.
|
6 |
+
* Version: 1.4.15
|
7 |
* Author: Photo Gallery Team
|
8 |
* Author URI: https://10web.io/pricing/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
81 |
$this->plugin_dir = WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__));
|
82 |
$this->plugin_url = plugins_url(plugin_basename(dirname(__FILE__)));
|
83 |
$this->main_file = plugin_basename(__FILE__);
|
84 |
+
$this->plugin_version = '1.4.15';
|
85 |
+
$this->db_version = '1.4.15';
|
86 |
$this->prefix = 'bwg';
|
87 |
$this->nicename = __('Photo Gallery', $this->prefix);
|
88 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado,wdsupport,photogallerysupport,10web
|
|
3 |
Tags: gallery, photo gallery, image gallery, responsive gallery, wordpress gallery plugin, photo albums, gallery slider, gallery lightbox, wordpress photo gallery plugin, fullscreen gallery, watermarking, video gallery
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 1.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -279,6 +279,12 @@ Choose whether to display random or the first/last specific number of images.
|
|
279 |
|
280 |
== Changelog ==
|
281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
= 1.4.14 =
|
283 |
* Fixed: Conflict with IE 11 version.
|
284 |
* Fixed: Lightbox autoplay.
|
3 |
Tags: gallery, photo gallery, image gallery, responsive gallery, wordpress gallery plugin, photo albums, gallery slider, gallery lightbox, wordpress photo gallery plugin, fullscreen gallery, watermarking, video gallery
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 1.4.15
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
279 |
|
280 |
== Changelog ==
|
281 |
|
282 |
+
= 1.4.15 =
|
283 |
+
* Fixed: Titles in mosaic view after load more.
|
284 |
+
* Fixed: JS error on slideshow view.
|
285 |
+
* Fixed: Slideshow on IE11.
|
286 |
+
* Fixed: Captcha dose not appear after submit.
|
287 |
+
|
288 |
= 1.4.14 =
|
289 |
* Fixed: Conflict with IE 11 version.
|
290 |
* Fixed: Lightbox autoplay.
|