Version Description
Download this release
Release Info
Developer | webdorado |
Plugin | Photo Gallery by WD – Responsive Photo Gallery |
Version | 1.2.5 |
Comparing to | |
See all releases |
Code changes from version 1.2.4 to 1.2.5
- admin/views/BWGViewBWGShortcode.php +6 -6
- frontend/views/BWGViewGalleryBox.php +2 -15
- photo-gallery.php +5 -5
- readme.txt +54 -50
admin/views/BWGViewBWGShortcode.php
CHANGED
@@ -1107,7 +1107,7 @@ class BWGViewBWGShortcode {
|
|
1107 |
jQuery("#compuct_album_view_type_1").attr('checked', 'checked');
|
1108 |
}
|
1109 |
else {
|
1110 |
-
jQuery("#
|
1111 |
}
|
1112 |
break;
|
1113 |
|
@@ -1365,7 +1365,7 @@ class BWGViewBWGShortcode {
|
|
1365 |
tagtext += ' image_enable_page="' + jQuery("input[name=image_enable_page]:checked").val() + '"';
|
1366 |
tagtext += ' thumb_width="' + jQuery("#thumb_width").val() + '"';
|
1367 |
tagtext += ' thumb_height="' + jQuery("#thumb_height").val() + '"';
|
1368 |
-
title = ' gal_title="' + jQuery('#gallery option:selected').text().replace("'", "").replace('"', '') + '"';
|
1369 |
break;
|
1370 |
|
1371 |
}
|
@@ -1388,7 +1388,7 @@ class BWGViewBWGShortcode {
|
|
1388 |
tagtext += ' slideshow_description_position="' + jQuery("input[name=slideshow_description_position]:checked").val() + '"';
|
1389 |
tagtext += ' enable_slideshow_music="' + jQuery("input[name=enable_slideshow_music]:checked").val() + '"';
|
1390 |
tagtext += ' slideshow_music_url="' + jQuery("#slideshow_music_url").val() + '"';
|
1391 |
-
title = ' gal_title="' + jQuery('#gallery option:selected').text().replace("'", "").replace('"', '') + '"';
|
1392 |
break;
|
1393 |
|
1394 |
}
|
@@ -1401,7 +1401,7 @@ class BWGViewBWGShortcode {
|
|
1401 |
tagtext += ' image_browser_width="' + jQuery("#image_browser_width").val() + '"';
|
1402 |
tagtext += ' image_browser_title_enable="' + jQuery("input[name=image_browser_title_enable]:checked").val() + '"';
|
1403 |
tagtext += ' image_browser_description_enable="' + jQuery("input[name=image_browser_description_enable]:checked").val() + '"';
|
1404 |
-
title = ' gal_title="' + jQuery('#gallery option:selected').text().replace("'", "").replace('"', '') + '"';
|
1405 |
break;
|
1406 |
|
1407 |
}
|
@@ -1423,7 +1423,7 @@ class BWGViewBWGShortcode {
|
|
1423 |
tagtext += ' compuct_album_image_thumb_width="' + jQuery("#compuct_album_image_thumb_width").val() + '"';
|
1424 |
tagtext += ' compuct_album_image_thumb_height="' + jQuery("#compuct_album_image_thumb_height").val() + '"';
|
1425 |
tagtext += ' compuct_album_enable_page="' + jQuery("input[name=compuct_album_enable_page]:checked").val() + '"';
|
1426 |
-
title = ' gal_title="' + jQuery('#album option:selected').text().replace("'", "").replace('"', '') + '"';
|
1427 |
break;
|
1428 |
|
1429 |
}
|
@@ -1445,7 +1445,7 @@ class BWGViewBWGShortcode {
|
|
1445 |
tagtext += ' extended_album_image_thumb_width="' + jQuery("#extended_album_image_thumb_width").val() + '"';
|
1446 |
tagtext += ' extended_album_image_thumb_height="' + jQuery("#extended_album_image_thumb_height").val() + '"';
|
1447 |
tagtext += ' extended_album_enable_page="' + jQuery("input[name=extended_album_enable_page]:checked").val() + '"';
|
1448 |
-
title = ' gal_title="' + jQuery('#album option:selected').text().replace("'", "").replace('"', '') + '"';
|
1449 |
break;
|
1450 |
|
1451 |
}
|
1107 |
jQuery("#compuct_album_view_type_1").attr('checked', 'checked');
|
1108 |
}
|
1109 |
else {
|
1110 |
+
jQuery("#compuct_album_view_type_0").attr('checked', 'checked');
|
1111 |
}
|
1112 |
break;
|
1113 |
|
1365 |
tagtext += ' image_enable_page="' + jQuery("input[name=image_enable_page]:checked").val() + '"';
|
1366 |
tagtext += ' thumb_width="' + jQuery("#thumb_width").val() + '"';
|
1367 |
tagtext += ' thumb_height="' + jQuery("#thumb_height").val() + '"';
|
1368 |
+
title = ' gal_title="' + jQuery.trim(jQuery('#gallery option:selected').text().replace("'", "").replace('"', '')) + '"';
|
1369 |
break;
|
1370 |
|
1371 |
}
|
1388 |
tagtext += ' slideshow_description_position="' + jQuery("input[name=slideshow_description_position]:checked").val() + '"';
|
1389 |
tagtext += ' enable_slideshow_music="' + jQuery("input[name=enable_slideshow_music]:checked").val() + '"';
|
1390 |
tagtext += ' slideshow_music_url="' + jQuery("#slideshow_music_url").val() + '"';
|
1391 |
+
title = ' gal_title="' + jQuery.trim(jQuery('#gallery option:selected').text().replace("'", "").replace('"', '')) + '"';
|
1392 |
break;
|
1393 |
|
1394 |
}
|
1401 |
tagtext += ' image_browser_width="' + jQuery("#image_browser_width").val() + '"';
|
1402 |
tagtext += ' image_browser_title_enable="' + jQuery("input[name=image_browser_title_enable]:checked").val() + '"';
|
1403 |
tagtext += ' image_browser_description_enable="' + jQuery("input[name=image_browser_description_enable]:checked").val() + '"';
|
1404 |
+
title = ' gal_title="' + jQuery.trim(jQuery('#gallery option:selected').text().replace("'", "").replace('"', '')) + '"';
|
1405 |
break;
|
1406 |
|
1407 |
}
|
1423 |
tagtext += ' compuct_album_image_thumb_width="' + jQuery("#compuct_album_image_thumb_width").val() + '"';
|
1424 |
tagtext += ' compuct_album_image_thumb_height="' + jQuery("#compuct_album_image_thumb_height").val() + '"';
|
1425 |
tagtext += ' compuct_album_enable_page="' + jQuery("input[name=compuct_album_enable_page]:checked").val() + '"';
|
1426 |
+
title = ' gal_title="' + jQuery.trim(jQuery('#album option:selected').text().replace("'", "").replace('"', '')) + '"';
|
1427 |
break;
|
1428 |
|
1429 |
}
|
1445 |
tagtext += ' extended_album_image_thumb_width="' + jQuery("#extended_album_image_thumb_width").val() + '"';
|
1446 |
tagtext += ' extended_album_image_thumb_height="' + jQuery("#extended_album_image_thumb_height").val() + '"';
|
1447 |
tagtext += ' extended_album_enable_page="' + jQuery("input[name=extended_album_enable_page]:checked").val() + '"';
|
1448 |
+
title = ' gal_title="' + jQuery.trim(jQuery('#album option:selected').text().replace("'", "").replace('"', '')) + '"';
|
1449 |
break;
|
1450 |
|
1451 |
}
|
frontend/views/BWGViewGalleryBox.php
CHANGED
@@ -908,12 +908,6 @@ class BWGViewGalleryBox {
|
|
908 |
</span>
|
909 |
<input type="hidden" id="bwg_current_image_key" value="<?php echo $key; ?>" />
|
910 |
<?php
|
911 |
-
if ($key == 0) {?>
|
912 |
-
<script>jQuery("#spider_popup_left").hover().css({"display": "none"});</script><?php
|
913 |
-
}
|
914 |
-
if ($key == (count($image_rows) - 1)) {?>
|
915 |
-
<script>jQuery("#spider_popup_right").hover().css({"display": "none"});</script><?php
|
916 |
-
}
|
917 |
break;
|
918 |
}
|
919 |
}
|
@@ -1301,13 +1295,6 @@ class BWGViewGalleryBox {
|
|
1301 |
}
|
1302 |
jQuery("#spider_popup_left").hover().css({"display": "inline"});
|
1303 |
jQuery("#spider_popup_right").hover().css({"display": "inline"});
|
1304 |
-
/* Hide previous/next buttons on first/last images.*/
|
1305 |
-
if (key == 0) {
|
1306 |
-
jQuery("#spider_popup_left").hover().css({"display": "none"});
|
1307 |
-
}
|
1308 |
-
else if (key == (data.length - 1)) {
|
1309 |
-
jQuery("#spider_popup_right").hover().css({"display": "none"});
|
1310 |
-
}
|
1311 |
jQuery(".bwg_image_count").html(data[key]["number"]);
|
1312 |
/* Set filmstrip initial position.*/
|
1313 |
jQuery(".bwg_watermark").css({display: 'none'});
|
@@ -1649,11 +1636,11 @@ class BWGViewGalleryBox {
|
|
1649 |
var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
|
1650 |
var bwg_click = isMobile ? 'touchend' : 'click';
|
1651 |
jQuery("#spider_popup_left").on(bwg_click, function () {
|
1652 |
-
bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), parseInt(jQuery('#bwg_current_image_key').val()) - 1, data);
|
1653 |
return false;
|
1654 |
});
|
1655 |
jQuery("#spider_popup_right").on(bwg_click, function () {
|
1656 |
-
bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), parseInt(jQuery('#bwg_current_image_key').val()) + 1, data);
|
1657 |
return false;
|
1658 |
});
|
1659 |
if (navigator.appVersion.indexOf("MSIE 10") != -1 || navigator.appVersion.indexOf("MSIE 9") != -1) {
|
908 |
</span>
|
909 |
<input type="hidden" id="bwg_current_image_key" value="<?php echo $key; ?>" />
|
910 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
911 |
break;
|
912 |
}
|
913 |
}
|
1295 |
}
|
1296 |
jQuery("#spider_popup_left").hover().css({"display": "inline"});
|
1297 |
jQuery("#spider_popup_right").hover().css({"display": "inline"});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1298 |
jQuery(".bwg_image_count").html(data[key]["number"]);
|
1299 |
/* Set filmstrip initial position.*/
|
1300 |
jQuery(".bwg_watermark").css({display: 'none'});
|
1636 |
var isMobile = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
|
1637 |
var bwg_click = isMobile ? 'touchend' : 'click';
|
1638 |
jQuery("#spider_popup_left").on(bwg_click, function () {
|
1639 |
+
bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), (parseInt(jQuery('#bwg_current_image_key').val()) - 1) >= 0 ? (parseInt(jQuery('#bwg_current_image_key').val()) - 1) % data.length : data.length - 1, data);
|
1640 |
return false;
|
1641 |
});
|
1642 |
jQuery("#spider_popup_right").on(bwg_click, function () {
|
1643 |
+
bwg_change_image(parseInt(jQuery('#bwg_current_image_key').val()), (parseInt(jQuery('#bwg_current_image_key').val()) + 1) % data.length, data);
|
1644 |
return false;
|
1645 |
});
|
1646 |
if (navigator.appVersion.indexOf("MSIE 10") != -1 || navigator.appVersion.indexOf("MSIE 9") != -1) {
|
photo-gallery.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Photo Gallery
|
5 |
* Plugin URI: http://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: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -71,8 +71,8 @@ function bw_gallery() {
|
|
71 |
}
|
72 |
|
73 |
function bwg_featured() {
|
74 |
-
require_once(
|
75 |
-
wp_register_style('bwg_featured',
|
76 |
wp_print_styles('bwg_featured');
|
77 |
spider_featured('photo-gallery');
|
78 |
}
|
@@ -2761,7 +2761,7 @@ function bwg_activate() {
|
|
2761 |
));
|
2762 |
}
|
2763 |
$version = get_option("wd_bwg_version");
|
2764 |
-
$new_version = '1.2.
|
2765 |
if ($version && version_compare($version, $new_version, '<')) {
|
2766 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2767 |
bwg_update($version);
|
@@ -2776,7 +2776,7 @@ register_activation_hook(__FILE__, 'bwg_activate');
|
|
2776 |
|
2777 |
function bwg_update_hook() {
|
2778 |
$version = get_option("wd_bwg_version");
|
2779 |
-
$new_version = '1.2.
|
2780 |
if ($version && version_compare($version, $new_version, '<')) {
|
2781 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2782 |
bwg_update($version);
|
4 |
* Plugin Name: Photo Gallery
|
5 |
* Plugin URI: http://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.5
|
8 |
* Author: WebDorado
|
9 |
* Author URI: http://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
71 |
}
|
72 |
|
73 |
function bwg_featured() {
|
74 |
+
require_once(WD_BWG_DIR . '/featured/featured.php');
|
75 |
+
wp_register_style('bwg_featured', WD_BWG_URL . '/featured/style.css', array(), get_option("wd_bwg_version"));
|
76 |
wp_print_styles('bwg_featured');
|
77 |
spider_featured('photo-gallery');
|
78 |
}
|
2761 |
));
|
2762 |
}
|
2763 |
$version = get_option("wd_bwg_version");
|
2764 |
+
$new_version = '1.2.5';
|
2765 |
if ($version && version_compare($version, $new_version, '<')) {
|
2766 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2767 |
bwg_update($version);
|
2776 |
|
2777 |
function bwg_update_hook() {
|
2778 |
$version = get_option("wd_bwg_version");
|
2779 |
+
$new_version = '1.2.5';
|
2780 |
if ($version && version_compare($version, $new_version, '<')) {
|
2781 |
require_once WD_BWG_DIR . "/update/bwg_update.php";
|
2782 |
bwg_update($version);
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://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
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -74,6 +74,9 @@ Photo Gallery product in addition to the main plugin includes 4 specific widgets
|
|
74 |
* Possibility to display images in the albums in thumbnail or masonry view upon opening
|
75 |
* WordPress Search Integration by gallery and album title
|
76 |
* Possibility to display the number of the images in the lighbox (optional feature)
|
|
|
|
|
|
|
77 |
|
78 |
Upgrade to [WordPress Photo Gallery Pro](http://web-dorado.com/products/wordpress-photo-gallery-plugin.html) to add features:
|
79 |
|
@@ -85,7 +88,7 @@ Upgrade to [WordPress Photo Gallery Pro](http://web-dorado.com/products/wordpres
|
|
85 |
* Comment-managing possibility to avoid spamming (Unpublish/Delete).
|
86 |
* Social sharing possibility (Facebook, Google+, Twitter, Pinterest and Tumblr)
|
87 |
* Dynamic Photo Gallery Tag Cloud widget with image tag cloud and text tag cloud options.
|
88 |
-
|
89 |
|
90 |
|
91 |
|
@@ -476,12 +479,12 @@ Advertisement position. Choose the positioning of the advertisement from the ava
|
|
476 |
|
477 |
|
478 |
5.8 Image Options
|
479 |
-
5.7.1 Enable image title for Image Browser view. Choose whether to display image titles for the Image Browser view or not.
|
480 |
-
5.8.2 Enable image description for Image Browser view. Choose whether to have image descriptions for the Image Browser view or not.
|
481 |
-
5.8.3 Image width. Define the image width for the Image Browser view option.
|
482 |
-
5.8.4 Enable image title for Blog Style view. Choose whether to have image titles in Blog Style view or not.
|
483 |
-
5.8.5 Image width for Blog Style view. Define the image width for the Blog Style view.
|
484 |
-
5.8.6 Images per page in Blog Style view. Specify the number of images to be displayed in a single page for the Blog Style view.
|
485 |
5.8.7 Enable Pagination for Blog Style view. Choose whether to have pagination for the Blog Style view or not.
|
486 |
|
487 |
|
@@ -596,17 +599,17 @@ Use one of the default Photo Gallery themes or click `Add new` button to create
|
|
596 |
6.4.16 Background color. Select the background color for the image browser box.
|
597 |
6.4.17 Background transparency. Specify the transparency level of the overall background.
|
598 |
6.4.18 Box shadow. Set the shadow values for the image browser box.
|
599 |
-
6.4.19 Title alignment. Define the alignment for the image titles.
|
600 |
-
6.4.20 Font size. Set the font size for the text elements of images, e.g. title and description.
|
601 |
6.4.21 Font color. Choose the font color for the text elements of the images, e.g. title and description.
|
602 |
6.4.22 Font family. Choose the font family to be used for the image text elements, e.g. title and description.
|
603 |
-
6.4.23 Description margin. Using CSS type values set image description padding.
|
604 |
-
6.4.24 Description padding. Using CSS type values set image description padding.
|
605 |
-
6.4.25 Description border width. Define the border width for the image descriptions.
|
606 |
-
6.4.26 Description border style. Select the border style for the image description in image browser view.
|
607 |
-
6.4.27 Description border color. Choose the border color for the image description in image browser view.
|
608 |
-
6.4.28 Description border radius. Define the border radius for the image description in image browser view.
|
609 |
-
6.4.29 Description background color. Select the background color for the
|
610 |
|
611 |
6.5 Compact Album
|
612 |
6.5.1 Name. Provide a name for the theme.
|
@@ -717,17 +720,17 @@ Use one of the default Photo Gallery themes or click `Add new` button to create
|
|
717 |
6.7.15 Buttons and title margin. Set the buttons (social media sharing and comments) and title margins using CSS type values.
|
718 |
6.7.16 Buttons size. Set the buttons (social media sharing and comments) size in pixels.
|
719 |
6.7.17 Buttons color. Select the buttons (social media sharing and comments) color.
|
720 |
-
6.7.18 Buttons and title border width. Set the border width for the buttons (social media sharing and comments) and title.
|
721 |
-
6.7.19 Buttons and title border style. Select the border style for the buttons (social media sharing and comments) and title.
|
722 |
-
6.7.20 Buttons and title border color. Select the border color for the buttons (social media sharing and comments) and title.
|
723 |
-
6.7.21 Buttons and title border radius. Set the border radius for the buttons (social media sharing and comments) and title.
|
724 |
-
6.7.22 Buttons and title background color. Select the background color for the buttons (social media sharing and comments) and title.
|
725 |
-
6.7.23 Buttons and title background transparency. Set the level of the background transparency for the buttons (social media sharing and comments) and title.
|
726 |
6.7.24 Buttons or title alignment. Choose an alignment for either buttons or title. The second option will be adjusted automatically.
|
727 |
|
728 |
6.8 Lightbox
|
729 |
6.8.1 Name. Provide a name for the theme.
|
730 |
-
6.8.2 Overlay background color. Choose the background color for the image background overlay.
|
731 |
6.8.3 Overlay background transparency. Select the level of transparency for the background overlay.
|
732 |
6.8.4 Lightbox background color. Select the overall background color for the lightbox.
|
733 |
6.8.5 Control buttons height. Set the height for the control buttons in the lightbox.
|
@@ -881,16 +884,16 @@ Use one of the default Photo Gallery themes or click `Add new` button to create
|
|
881 |
|
882 |
= Step 8: Publishing the Created Photo Gallery. =
|
883 |
To insert a gallery into a Page or a Post.
|
884 |
-
Open the post/page you want to display the gallery. Press the button named Photo Gallery. A camera icon will be inserted into the page/post. Click on the image and select the gallery/album display you want to use for that specific page/post.
|
885 |
Each Photo Gallery shortcode uses three columns of parameters. The first column shows parameters specific for that Photo Gallery view only, the second one shows Lightbox (except Slideshow view) parameters, the third one is referred to the Advertisement.
|
886 |
-
In addition you can add the shortcode using Shortcode Generator .
|
887 |
8.1 General Parameters (First Column)
|
888 |
8.1.1Thumbnails
|
889 |
Theme. Select the theme to be applied to this Photo Gallery view.
|
890 |
Gallery. Select the gallery.
|
891 |
Sort by. Choose the option to use for the gallery image sequence.
|
892 |
Max. number of image columns. Provide the number of image columns in a page.
|
893 |
-
Images per page. Provide the maximum number of images per page.
|
894 |
Enable pagination. Choose whether to have pagination for the view or not.
|
895 |
Image thumbnail dimensions. Define the thumbnail width and height in pixels.
|
896 |
8.1.2 Masonry
|
@@ -898,13 +901,13 @@ Theme. Select the theme to be applied to this Photo Gallery view.
|
|
898 |
Gallery. Select the gallery.
|
899 |
Sort by. Choose the option to use for image sequence.
|
900 |
Max. number of image columns. Provide the number of image columns in a page.
|
901 |
-
Images per page. Provide the maximum number of images per page.
|
902 |
Enable pagination. Choose whether to have pagination for the view or not.
|
903 |
Image thumbnail width. Provide the thumbnail width for the images.
|
904 |
8.1.3 Slideshow
|
905 |
Theme. Select the theme to be applied to this Photo Gallery view.
|
906 |
Gallery. Select the gallery.
|
907 |
-
Sort by. Choose the option to use for image sequence.
|
908 |
Slideshow Effect. Select the effect to be applied to the slideshow.
|
909 |
Time interval. Specify the time interval between the images.
|
910 |
Slideshow dimensions. Define the width and height of the slideshow.
|
@@ -965,9 +968,9 @@ Enable Twitter button. Choose whether to have Twitter social sharing button enab
|
|
965 |
Enable Google+ button. Choose whether to have Google+ social sharing button enabled in the pop-up or not.
|
966 |
|
967 |
(for Slideshow View only)
|
968 |
-
Enable image title. Choose whether to display image titles during the slideshow or not.
|
969 |
Title position. Set the position of the title using the available options.
|
970 |
-
Enable image description. Choose whether to display image description during the slideshow or not.
|
971 |
Description position. Set the position of the description using the available options.
|
972 |
Enable slideshow music. Choose whether to have background audio track during the slideshow or not.
|
973 |
Music URL. Provide the URL of the audio track to play during the slideshow.
|
@@ -997,47 +1000,48 @@ Go to Appearance>Widgets. Here select the widget option you want to add to a cus
|
|
997 |
9.1.1 Title. Provide a title for the tag cloud.
|
998 |
9.1.2 Taxonomy. Select Photo Gallery from the provided options.
|
999 |
|
1000 |
-
Go to Appearance>Widgets. Here select the widget option you want to add to a custom location. Afterwards drag and drop the selected widget into the custom location, fill in the options and press Save button.
|
1001 |
-
|
|
|
1002 |
9.2.1 Title. Provide a title for the dynamic tag cloud.
|
1003 |
9.2.2 Choosing Text type:
|
1004 |
-
Number. Provide the number of tags you want to display. If you leave it to 0 all tags will be displayed.
|
1005 |
Dimensions. Specify the width and height for the dynamic tag cloud.
|
1006 |
-
Transparent background. Choose whether to have a transparent background or not.
|
1007 |
Background color. Choose the background color for the tag cloud.
|
1008 |
Text color. Choose the tag text color.
|
1009 |
-
Theme. Choose the theme, which will be applied to the gallery
|
1010 |
9.2.3 Choosing Image type:
|
1011 |
Show tag names. Choose whether to display tag names or not.
|
1012 |
-
Number. Provide the number of images you want to display. If you leave it to 0 all images will be displayed.
|
1013 |
Dimensions. Specify the width and height for the dynamic image cloud.
|
1014 |
Background color. Choose the background color for the image cloud.
|
1015 |
Text color. Choose the tag text color.
|
1016 |
Theme. Choose the theme, which will be applied to the gallery/album corresponding to the image/tag.
|
1017 |
|
1018 |
9.3 Photo Gallery Slideshow.
|
1019 |
-
9.3.1 Title. Provide a title for the slideshow.
|
1020 |
9.3.2 Select Gallery. Specify the gallery you want to use for the slideshow.
|
1021 |
-
9.3.3 Dimensions. Specify the width and height for the slideshow.
|
1022 |
9.3.4 Slideshow effect. Select the effect to apply to the slideshow.
|
1023 |
-
9.3.5 Time interval. Define the time interval between the images in seconds.
|
1024 |
9.3.6 Enable shuffle. Choose whether to have shuffle for the slideshow images or not.
|
1025 |
-
9.3.7 Theme. Choose the theme to be applied to the image slideshow.
|
1026 |
|
1027 |
-
9.4 Photo Gallery Widget. You can add album and gallery images into a custom location. After click the users will be redirected into compact album view, if it is an album. If it is a gallery included in the album it will open up in Thumbnails view. The images will be displayed in a lightbox.
|
1028 |
-
9.4.1 Title. Provide a title for the widget.
|
1029 |
9.4.2 Choose whether to display an album or gallery.
|
1030 |
-
9.4.3 Select Gallery/Select Album. Select the gallery
|
1031 |
9.4.4 Choose whether to display random or the last few images of the gallery or album.
|
1032 |
-
9.4.5 Number. Provide the number of images to be displayed with the widget.
|
1033 |
-
9.4.6 Dimensions. Specify the width and height of the widget.
|
1034 |
-
9.4.7 Theme. Choose the theme, which will be applied to the gallery
|
1035 |
|
1036 |
|
1037 |
|
1038 |
= Step 10: Generating shortcode for the Photo Gallery. =
|
1039 |
|
1040 |
-
To use the created galleries and albums for the custom location, you can generate custom shortcodes and edit the
|
1041 |
|
1042 |
-
10.1 Generate. Clicking this button you will be able to create a special shortcode based on your option choices. The created shortcode will appear in the box below. It can be copied/cut and pasted into a post/page.
|
1043 |
-
10.2 Import.Pasting the shortcode in the box below and pressing the button, you will be able to edit and make changes in the shortcode.The final shortcode can be copied/cut and pasted into a post/page.
|
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
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 1.2.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
74 |
* Possibility to display images in the albums in thumbnail or masonry view upon opening
|
75 |
* WordPress Search Integration by gallery and album title
|
76 |
* Possibility to display the number of the images in the lighbox (optional feature)
|
77 |
+
* Resizing possibility after adding the images
|
78 |
+
* Possibility to display Search Box on the gallery page for the search based on titles
|
79 |
+
* Possibility to display the number of images in the lighbox
|
80 |
|
81 |
Upgrade to [WordPress Photo Gallery Pro](http://web-dorado.com/products/wordpress-photo-gallery-plugin.html) to add features:
|
82 |
|
88 |
* Comment-managing possibility to avoid spamming (Unpublish/Delete).
|
89 |
* Social sharing possibility (Facebook, Google+, Twitter, Pinterest and Tumblr)
|
90 |
* Dynamic Photo Gallery Tag Cloud widget with image tag cloud and text tag cloud options.
|
91 |
+
* Possibility to include both videos and images within a single gallery.
|
92 |
|
93 |
|
94 |
|
479 |
|
480 |
|
481 |
5.8 Image Options
|
482 |
+
5.7.1 Enable image title for Image Browser view. Choose whether to display gallery image titles for the Image Browser view or not.
|
483 |
+
5.8.2 Enable image description for Image Browser view. Choose whether to have gallery image descriptions for the Image Browser view or not.
|
484 |
+
5.8.3 Image width. Define the gallery image width for the Image Browser view option.
|
485 |
+
5.8.4 Enable image title for Blog Style view. Choose whether to have gallery image titles in Blog Style view or not.
|
486 |
+
5.8.5 Image width for Blog Style view. Define the galllery image width for the Blog Style view.
|
487 |
+
5.8.6 Images per page in Blog Style view. Specify the number of gallery images to be displayed in a single page for the Blog Style view.
|
488 |
5.8.7 Enable Pagination for Blog Style view. Choose whether to have pagination for the Blog Style view or not.
|
489 |
|
490 |
|
599 |
6.4.16 Background color. Select the background color for the image browser box.
|
600 |
6.4.17 Background transparency. Specify the transparency level of the overall background.
|
601 |
6.4.18 Box shadow. Set the shadow values for the image browser box.
|
602 |
+
6.4.19 Title alignment. Define the alignment for the gallery image titles.
|
603 |
+
6.4.20 Font size. Set the font size for the text elements of the gallery images, e.g. title and description.
|
604 |
6.4.21 Font color. Choose the font color for the text elements of the images, e.g. title and description.
|
605 |
6.4.22 Font family. Choose the font family to be used for the image text elements, e.g. title and description.
|
606 |
+
6.4.23 Description margin. Using CSS type values set gallery image description padding.
|
607 |
+
6.4.24 Description padding. Using CSS type values set gallery image description padding.
|
608 |
+
6.4.25 Description border width. Define the border width for the gallery image descriptions.
|
609 |
+
6.4.26 Description border style. Select the border style for the gallery image description in image browser view.
|
610 |
+
6.4.27 Description border color. Choose the border color for the gallery image description in image browser view.
|
611 |
+
6.4.28 Description border radius. Define the border radius for the gallery image description in image browser view.
|
612 |
+
6.4.29 Description background color. Select the background color for the galleryimage description in the image browser view.
|
613 |
|
614 |
6.5 Compact Album
|
615 |
6.5.1 Name. Provide a name for the theme.
|
720 |
6.7.15 Buttons and title margin. Set the buttons (social media sharing and comments) and title margins using CSS type values.
|
721 |
6.7.16 Buttons size. Set the buttons (social media sharing and comments) size in pixels.
|
722 |
6.7.17 Buttons color. Select the buttons (social media sharing and comments) color.
|
723 |
+
6.7.18 Buttons and title border width. Set the border width for the buttons (social media sharing and comments) and gallery image title.
|
724 |
+
6.7.19 Buttons and title border style. Select the border style for the buttons (social media sharing and comments) and gallery image title.
|
725 |
+
6.7.20 Buttons and title border color. Select the border color for the buttons (social media sharing and comments) and gallery image title.
|
726 |
+
6.7.21 Buttons and title border radius. Set the border radius for the buttons (social media sharing and comments) and gallery image title.
|
727 |
+
6.7.22 Buttons and title background color. Select the background color for the buttons (social media sharing and comments) and gallery image title.
|
728 |
+
6.7.23 Buttons and title background transparency. Set the level of the background transparency for the buttons (social media sharing and comments) and gallery image title.
|
729 |
6.7.24 Buttons or title alignment. Choose an alignment for either buttons or title. The second option will be adjusted automatically.
|
730 |
|
731 |
6.8 Lightbox
|
732 |
6.8.1 Name. Provide a name for the theme.
|
733 |
+
6.8.2 Overlay background color. Choose the background color for the gallery image background overlay.
|
734 |
6.8.3 Overlay background transparency. Select the level of transparency for the background overlay.
|
735 |
6.8.4 Lightbox background color. Select the overall background color for the lightbox.
|
736 |
6.8.5 Control buttons height. Set the height for the control buttons in the lightbox.
|
884 |
|
885 |
= Step 8: Publishing the Created Photo Gallery. =
|
886 |
To insert a gallery into a Page or a Post.
|
887 |
+
Open the post/page you want to display the gallery. Press the button named Photo Gallery. A camera icon will be inserted into the page/post. Click on the gallery image and select the gallery/album display you want to use for that specific page/post.
|
888 |
Each Photo Gallery shortcode uses three columns of parameters. The first column shows parameters specific for that Photo Gallery view only, the second one shows Lightbox (except Slideshow view) parameters, the third one is referred to the Advertisement.
|
889 |
+
In addition you can add the galllery shortcode using Shortcode Generator of the Photo Gallery.
|
890 |
8.1 General Parameters (First Column)
|
891 |
8.1.1Thumbnails
|
892 |
Theme. Select the theme to be applied to this Photo Gallery view.
|
893 |
Gallery. Select the gallery.
|
894 |
Sort by. Choose the option to use for the gallery image sequence.
|
895 |
Max. number of image columns. Provide the number of image columns in a page.
|
896 |
+
Images per page. Provide the maximum number of gallery images per page.
|
897 |
Enable pagination. Choose whether to have pagination for the view or not.
|
898 |
Image thumbnail dimensions. Define the thumbnail width and height in pixels.
|
899 |
8.1.2 Masonry
|
901 |
Gallery. Select the gallery.
|
902 |
Sort by. Choose the option to use for image sequence.
|
903 |
Max. number of image columns. Provide the number of image columns in a page.
|
904 |
+
Images per page. Provide the maximum number of gallery images per page.
|
905 |
Enable pagination. Choose whether to have pagination for the view or not.
|
906 |
Image thumbnail width. Provide the thumbnail width for the images.
|
907 |
8.1.3 Slideshow
|
908 |
Theme. Select the theme to be applied to this Photo Gallery view.
|
909 |
Gallery. Select the gallery.
|
910 |
+
Sort by. Choose the option to use for the gallery image sequence.
|
911 |
Slideshow Effect. Select the effect to be applied to the slideshow.
|
912 |
Time interval. Specify the time interval between the images.
|
913 |
Slideshow dimensions. Define the width and height of the slideshow.
|
968 |
Enable Google+ button. Choose whether to have Google+ social sharing button enabled in the pop-up or not.
|
969 |
|
970 |
(for Slideshow View only)
|
971 |
+
Enable image title. Choose whether to display gallery image titles during the slideshow or not.
|
972 |
Title position. Set the position of the title using the available options.
|
973 |
+
Enable image description. Choose whether to display gallery image description during the slideshow or not.
|
974 |
Description position. Set the position of the description using the available options.
|
975 |
Enable slideshow music. Choose whether to have background audio track during the slideshow or not.
|
976 |
Music URL. Provide the URL of the audio track to play during the slideshow.
|
1000 |
9.1.1 Title. Provide a title for the tag cloud.
|
1001 |
9.1.2 Taxonomy. Select Photo Gallery from the provided options.
|
1002 |
|
1003 |
+
Go to Appearance>Widgets. Here select the gallery widget option you want to add to a custom location. Afterwards drag and drop the selected gallery widget into the custom location, fill in the options and press Save button.
|
1004 |
+
|
1005 |
+
9.2 Photo Gallery Tags Cloud. This dynamic widget allows having rotating tags or gallery images. After clicking on the tag a separate page will be opened displaying the gallery images corresponding to the tag. In case of the gallery images, the images will display with a pop-up.
|
1006 |
9.2.1 Title. Provide a title for the dynamic tag cloud.
|
1007 |
9.2.2 Choosing Text type:
|
1008 |
+
Number. Provide the number of tags you want to display. If you leave it to 0 all gallery tags will be displayed.
|
1009 |
Dimensions. Specify the width and height for the dynamic tag cloud.
|
1010 |
+
Transparent background. Choose whether to have a transparent background or not for the gallery widget or not.
|
1011 |
Background color. Choose the background color for the tag cloud.
|
1012 |
Text color. Choose the tag text color.
|
1013 |
+
Theme. Choose the theme, which will be applied to the gallery or album corresponding to the tag.
|
1014 |
9.2.3 Choosing Image type:
|
1015 |
Show tag names. Choose whether to display tag names or not.
|
1016 |
+
Number. Provide the number of gallery images you want to display. If you leave it to 0 all gallery images will be displayed.
|
1017 |
Dimensions. Specify the width and height for the dynamic image cloud.
|
1018 |
Background color. Choose the background color for the image cloud.
|
1019 |
Text color. Choose the tag text color.
|
1020 |
Theme. Choose the theme, which will be applied to the gallery/album corresponding to the image/tag.
|
1021 |
|
1022 |
9.3 Photo Gallery Slideshow.
|
1023 |
+
9.3.1 Title. Provide a title for the gallery slideshow.
|
1024 |
9.3.2 Select Gallery. Specify the gallery you want to use for the slideshow.
|
1025 |
+
9.3.3 Dimensions. Specify the width and height for the gallery slideshow.
|
1026 |
9.3.4 Slideshow effect. Select the effect to apply to the slideshow.
|
1027 |
+
9.3.5 Time interval. Define the time interval between the change of gallery images in seconds.
|
1028 |
9.3.6 Enable shuffle. Choose whether to have shuffle for the slideshow images or not.
|
1029 |
+
9.3.7 Theme. Choose the theme to be applied to the gallery image slideshow.
|
1030 |
|
1031 |
+
9.4 Photo Gallery Widget. You can add album and gallery images into a custom location as a gallery widget. After click the users will be redirected into compact album view, if it is an album. If it is a gallery included in the album it will open up in Thumbnails view. The gallery images will be displayed in a lightbox.
|
1032 |
+
9.4.1 Title. Provide a title for the gallery widget.
|
1033 |
9.4.2 Choose whether to display an album or gallery.
|
1034 |
+
9.4.3 Select Gallery/Select Album. Select the gallery or album to be displayed with the widget.
|
1035 |
9.4.4 Choose whether to display random or the last few images of the gallery or album.
|
1036 |
+
9.4.5 Number. Provide the number of gallery images to be displayed with the widget.
|
1037 |
+
9.4.6 Dimensions. Specify the width and height of the gallery widget.
|
1038 |
+
9.4.7 Theme. Choose the theme, which will be applied to the gallery or album.
|
1039 |
|
1040 |
|
1041 |
|
1042 |
= Step 10: Generating shortcode for the Photo Gallery. =
|
1043 |
|
1044 |
+
To use the created galleries and albums for the custom location, you can generate custom gallery shortcodes and edit the exisiting gallery shortcodes.
|
1045 |
|
1046 |
+
10.1 Generate. Clicking this button you will be able to create a special gallery shortcode based on your option choices. The created shortcode will appear in the box below. It can be copied/cut and pasted into a post/page for gallery/album display.
|
1047 |
+
10.2 Import.Pasting the gallery shortcode in the box below and pressing the button, you will be able to edit and make changes in the gallery shortcode.The final shortcode can be copied/cut and pasted into a post/page for the gallery or album display.
|