Version Description
- New: Search by name in file manager.
Download this release
Release Info
Developer | webdorado |
Plugin | Photo Gallery by WD – Responsive Photo Gallery |
Version | 1.2.39 |
Comparing to | |
See all releases |
Code changes from version 1.2.38 to 1.2.39
- filemanager/view.php +15 -0
- photo-gallery.php +3 -3
- readme.txt +7 -4
filemanager/view.php
CHANGED
@@ -75,6 +75,17 @@ class FilemanagerView {
|
|
75 |
var callback = "<?php echo (isset($_REQUEST['callback']) ? esc_html($_REQUEST['callback']) : ''); ?>";
|
76 |
var sortBy = "<?php echo $sort_by; ?>";
|
77 |
var sortOrder = "<?php echo $sort_order; ?>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
</script>
|
79 |
<script src="<?php echo WD_BWG_URL; ?>/filemanager/js/default.js?ver=<?php echo wd_bwg_version(); ?>"></script>
|
80 |
<link href="<?php echo WD_BWG_URL; ?>/filemanager/css/default.css?ver=<?php echo wd_bwg_version(); ?>" type="text/css" rel="stylesheet">
|
@@ -122,6 +133,10 @@ class FilemanagerView {
|
|
122 |
<a class="ctrl_bar_btn btn_import_files" onclick="onBtnShowImportClick(event, this);"><?php echo 'Media library'; ?></a>
|
123 |
</span>
|
124 |
<?php } ?>
|
|
|
|
|
|
|
|
|
125 |
</div>
|
126 |
<div class="ctrls_right">
|
127 |
<a class="ctrl_bar_btn btn_view_thumbs" onclick="onBtnViewThumbsClick(event, this);" title="<?php echo 'View thumbs'; ?>"></a>
|
75 |
var callback = "<?php echo (isset($_REQUEST['callback']) ? esc_html($_REQUEST['callback']) : ''); ?>";
|
76 |
var sortBy = "<?php echo $sort_by; ?>";
|
77 |
var sortOrder = "<?php echo $sort_order; ?>";
|
78 |
+
jQuery(document).ready(function () {
|
79 |
+
jQuery("#search_by_name .search_by_name").on("input keyup", function() {
|
80 |
+
var search_by_name = jQuery(this).val();
|
81 |
+
jQuery("#explorer_body .explorer_item").each(function() {
|
82 |
+
jQuery(this).hide();
|
83 |
+
if (jQuery(this).find(".item_name").html().trim().toLowerCase().indexOf(search_by_name) !== -1) {
|
84 |
+
jQuery(this).show();
|
85 |
+
}
|
86 |
+
});
|
87 |
+
});
|
88 |
+
});
|
89 |
</script>
|
90 |
<script src="<?php echo WD_BWG_URL; ?>/filemanager/js/default.js?ver=<?php echo wd_bwg_version(); ?>"></script>
|
91 |
<link href="<?php echo WD_BWG_URL; ?>/filemanager/css/default.css?ver=<?php echo wd_bwg_version(); ?>" type="text/css" rel="stylesheet">
|
133 |
<a class="ctrl_bar_btn btn_import_files" onclick="onBtnShowImportClick(event, this);"><?php echo 'Media library'; ?></a>
|
134 |
</span>
|
135 |
<?php } ?>
|
136 |
+
<span class="ctrl_bar_divider"></span>
|
137 |
+
<span id="search_by_name" class="ctrl_bar_btn">
|
138 |
+
<input type="search" placeholder="Search" class="ctrl_bar_btn search_by_name">
|
139 |
+
</span>
|
140 |
</div>
|
141 |
<div class="ctrls_right">
|
142 |
<a class="ctrl_bar_btn btn_view_thumbs" onclick="onBtnViewThumbsClick(event, this);" title="<?php echo 'View thumbs'; ?>"></a>
|
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
|
@@ -3346,7 +3346,7 @@ function bwg_activate() {
|
|
3346 |
));
|
3347 |
}
|
3348 |
$version = get_option("wd_bwg_version");
|
3349 |
-
$new_version = '1.2.
|
3350 |
if ($version && version_compare($version, $new_version, '<')) {
|
3351 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
3352 |
bwg_update($version);
|
@@ -3364,7 +3364,7 @@ wp_oembed_add_provider( '#https://instagr(\.am|am\.com)/p/.*#i', 'https://api.in
|
|
3364 |
|
3365 |
function bwg_update_hook() {
|
3366 |
$version = get_option("wd_bwg_version");
|
3367 |
-
$new_version = '1.2.
|
3368 |
if ($version && version_compare($version, $new_version, '<')) {
|
3369 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
3370 |
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.39
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
3346 |
));
|
3347 |
}
|
3348 |
$version = get_option("wd_bwg_version");
|
3349 |
+
$new_version = '1.2.39';
|
3350 |
if ($version && version_compare($version, $new_version, '<')) {
|
3351 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
3352 |
bwg_update($version);
|
3364 |
|
3365 |
function bwg_update_hook() {
|
3366 |
$version = get_option("wd_bwg_version");
|
3367 |
+
$new_version = '1.2.39';
|
3368 |
if ($version && version_compare($version, $new_version, '<')) {
|
3369 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
3370 |
bwg_update($version);
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.2
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -207,10 +207,13 @@ Yes, it is possible to add advertising and/or watermark over the images. In both
|
|
207 |
|
208 |
== Changelog ==
|
209 |
|
|
|
|
|
|
|
210 |
= 1.2.38 =
|
211 |
-
* New: Carousel view.
|
212 |
-
* Fixed: Horizontal Mosaic view bug.
|
213 |
-
* Fixed: Print bug.
|
214 |
|
215 |
= 1.2.37 =
|
216 |
* New: Load more with scroll.
|
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.2
|
7 |
+
Stable tag: 1.2.39
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
207 |
|
208 |
== Changelog ==
|
209 |
|
210 |
+
= 1.2.39 =
|
211 |
+
* New: Search by name in file manager.
|
212 |
+
|
213 |
= 1.2.38 =
|
214 |
+
* New: Carousel view.
|
215 |
+
* Fixed: Horizontal Mosaic view bug.
|
216 |
+
* Fixed: Print bug.
|
217 |
|
218 |
= 1.2.37 =
|
219 |
* New: Load more with scroll.
|