Version Description
Changed: Compability with Wordpress 4.3.
Download this release
Release Info
Developer | webdorado |
Plugin | Photo Gallery by WD – Responsive Photo Gallery |
Version | 1.2.51 |
Comparing to | |
See all releases |
Code changes from version 1.2.50 to 1.2.51
admin/controllers/BWGControllerWidget.php
CHANGED
@@ -23,7 +23,7 @@ class BWGControllerWidget extends WP_Widget {
|
|
23 |
// Widget Control Settings.
|
24 |
$control_ops = array('id_base' => 'bwp_gallery');
|
25 |
// Create the widget.
|
26 |
-
|
27 |
require_once WD_BWG_DIR . "/admin/models/BWGModelWidget.php";
|
28 |
$this->model = new BWGModelWidget();
|
29 |
|
23 |
// Widget Control Settings.
|
24 |
$control_ops = array('id_base' => 'bwp_gallery');
|
25 |
// Create the widget.
|
26 |
+
parent::__construct('bwp_gallery', 'Photo Gallery Widget', $widget_ops, $control_ops);
|
27 |
require_once WD_BWG_DIR . "/admin/models/BWGModelWidget.php";
|
28 |
$this->model = new BWGModelWidget();
|
29 |
|
admin/controllers/BWGControllerWidgetSlideshow.php
CHANGED
@@ -23,7 +23,7 @@ class BWGControllerWidgetSlideshow extends WP_Widget {
|
|
23 |
// Widget Control Settings.
|
24 |
$control_ops = array('id_base' => 'bwp_gallery_slideshow');
|
25 |
// Create the widget.
|
26 |
-
|
27 |
require_once WD_BWG_DIR . "/admin/models/BWGModelWidgetSlideshow.php";
|
28 |
$this->model = new BWGModelWidgetSlideshow();
|
29 |
|
23 |
// Widget Control Settings.
|
24 |
$control_ops = array('id_base' => 'bwp_gallery_slideshow');
|
25 |
// Create the widget.
|
26 |
+
parent::__construct('bwp_gallery_slideshow', 'Photo Gallery Slideshow', $widget_ops, $control_ops);
|
27 |
require_once WD_BWG_DIR . "/admin/models/BWGModelWidgetSlideshow.php";
|
28 |
$this->model = new BWGModelWidgetSlideshow();
|
29 |
|
admin/controllers/BWGControllerWidgetTags.php
CHANGED
@@ -23,7 +23,7 @@ class BWGControllerWidgetTags extends WP_Widget {
|
|
23 |
// Widget Control Settings.
|
24 |
$control_ops = array('id_base' => 'bwp_gallery_tags');
|
25 |
// Create the widget.
|
26 |
-
|
27 |
require_once WD_BWG_DIR . "/admin/models/BWGModelWidgetTags.php";
|
28 |
$this->model = new BWGModelWidgetTags();
|
29 |
|
23 |
// Widget Control Settings.
|
24 |
$control_ops = array('id_base' => 'bwp_gallery_tags');
|
25 |
// Create the widget.
|
26 |
+
parent::__construct('bwp_gallery_tags', 'Photo Gallery Tags Cloud', $widget_ops, $control_ops);
|
27 |
require_once WD_BWG_DIR . "/admin/models/BWGModelWidgetTags.php";
|
28 |
$this->model = new BWGModelWidgetTags();
|
29 |
|
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.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -2306,7 +2306,7 @@ function bwg_activate() {
|
|
2306 |
));
|
2307 |
}
|
2308 |
$version = get_option("wd_bwg_version");
|
2309 |
-
$new_version = '1.2.
|
2310 |
if ($version && version_compare($version, $new_version, '<')) {
|
2311 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2312 |
bwg_update($version);
|
@@ -2354,7 +2354,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
|
|
2354 |
|
2355 |
function bwg_update_hook() {
|
2356 |
$version = get_option("wd_bwg_version");
|
2357 |
-
$new_version = '1.2.
|
2358 |
if ($version && version_compare($version, $new_version, '<')) {
|
2359 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2360 |
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.51
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
2306 |
));
|
2307 |
}
|
2308 |
$version = get_option("wd_bwg_version");
|
2309 |
+
$new_version = '1.2.51';
|
2310 |
if ($version && version_compare($version, $new_version, '<')) {
|
2311 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2312 |
bwg_update($version);
|
2354 |
|
2355 |
function bwg_update_hook() {
|
2356 |
$version = get_option("wd_bwg_version");
|
2357 |
+
$new_version = '1.2.51';
|
2358 |
if ($version && version_compare($version, $new_version, '<')) {
|
2359 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2360 |
bwg_update($version);
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ 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, mosaic
|
5 |
Requires at least: 3.4
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -206,6 +206,8 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
|
|
206 |
|
207 |
|
208 |
== Changelog ==
|
|
|
|
|
209 |
|
210 |
= 1.2.50 =
|
211 |
Fixed: JavaScript conflict with some themes.
|
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, mosaic
|
5 |
Requires at least: 3.4
|
6 |
+
Tested up to: 4.3
|
7 |
+
Stable tag: 1.2.51
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
206 |
|
207 |
|
208 |
== Changelog ==
|
209 |
+
= 1.2.51 =
|
210 |
+
Changed: Compability with Wordpress 4.3.
|
211 |
|
212 |
= 1.2.50 =
|
213 |
Fixed: JavaScript conflict with some themes.
|