Version Description
- Updated gallery front end code
- SEO configuration option for thumbnails and links code
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 2.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.3.0 to 2.3.1
- includes/frontend/rbs_gallery_class.php +4 -3
- includes/rbs_gallery_settings.php +9 -3
- readme.txt +50 -18
- robogallery.php +2 -2
includes/frontend/rbs_gallery_class.php
CHANGED
@@ -539,10 +539,11 @@ class roboGallery extends roboGalleryUtils{
|
|
539 |
$newLine = "\t";
|
540 |
$lineBrake="\n";
|
541 |
}
|
542 |
-
|
543 |
-
|
|
|
544 |
.'<img src="'.$img['thumb'].'" title="'.$lightboxText.'" alt="'.$lightboxText.'" >'
|
545 |
-
.'</a>';
|
546 |
}
|
547 |
$this->returnHtml .=
|
548 |
'<div class="rbs-img category'.$img['catid'].'" '.( isset($img['col']) && $img['col'] ?' data-columns="'.$img['col'].'" ' :'').'>'.$lineBrake.$newLine
|
539 |
$newLine = "\t";
|
540 |
$lineBrake="\n";
|
541 |
}
|
542 |
+
$seo = get_option( ROBO_GALLERY_PREFIX.'seo', '' );
|
543 |
+
if( $seo ){
|
544 |
+
$this->seoContent .= ($seo==1 ? '<a href="'.$link.'" alt="'.$lightboxText.'" title="'.$lightboxText.'">' : '')
|
545 |
.'<img src="'.$img['thumb'].'" title="'.$lightboxText.'" alt="'.$lightboxText.'" >'
|
546 |
+
.($seo==1 ? '</a>' : '' );
|
547 |
}
|
548 |
$this->returnHtml .=
|
549 |
'<div class="rbs-img category'.$img['catid'].'" '.( isset($img['col']) && $img['col'] ?' data-columns="'.$img['col'].'" ' :'').'>'.$lineBrake.$newLine
|
includes/rbs_gallery_settings.php
CHANGED
@@ -116,10 +116,16 @@ wp_enqueue_style ( 'toolbox-gallery-about', ROBO_GALLERY_URL.'css/admin/about.c
|
|
116 |
<th scope="row"><?php _e('Add SEO content', 'rbs_gallery'); ?></th>
|
117 |
<td>
|
118 |
<fieldset>
|
119 |
-
<legend class="screen-reader-text"><span><?php _e('
|
120 |
-
<label title='<?php _e('
|
121 |
-
<input type='radio' name='<?php echo ROBO_GALLERY_PREFIX.'seo'; ?>' value='
|
122 |
</label><br />
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
<label title='<?php _e('Disable', 'rbs_gallery'); ?>'>
|
124 |
<input type='radio' name='<?php echo ROBO_GALLERY_PREFIX.'seo'; ?>' value='0' <?php if( !get_option(ROBO_GALLERY_PREFIX.'seo', '') ) echo " checked='checked'"; ?> /> <?php _e('Disable', 'rbs_gallery'); ?>
|
125 |
</label><br />
|
116 |
<th scope="row"><?php _e('Add SEO content', 'rbs_gallery'); ?></th>
|
117 |
<td>
|
118 |
<fieldset>
|
119 |
+
<legend class="screen-reader-text"><span><?php _e('Enable [thumbs]', 'rbs_gallery'); ?></span></legend>
|
120 |
+
<label title='<?php _e('Enable [thumbs]', 'rbs_gallery'); ?>'>
|
121 |
+
<input type='radio' name='<?php echo ROBO_GALLERY_PREFIX.'seo'; ?>' value='2' <?php if( get_option(ROBO_GALLERY_PREFIX.'seo')=='2' ) echo " checked='checked'"; ?> /> <?php _e('Enable [thumbs]', 'rbs_gallery'); ?>
|
122 |
</label><br />
|
123 |
+
|
124 |
+
<legend class="screen-reader-text"><span><?php _e('Enable [thumbs + link]', 'rbs_gallery'); ?></span></legend>
|
125 |
+
<label title='<?php _e('Enabled [thumbs + link]', 'rbs_gallery'); ?>'>
|
126 |
+
<input type='radio' name='<?php echo ROBO_GALLERY_PREFIX.'seo'; ?>' value='1' <?php if( get_option(ROBO_GALLERY_PREFIX.'seo')=='1' ) echo " checked='checked'"; ?> /> <?php _e('Enable [thumbs + link]', 'rbs_gallery'); ?>
|
127 |
+
</label><br />
|
128 |
+
|
129 |
<label title='<?php _e('Disable', 'rbs_gallery'); ?>'>
|
130 |
<input type='radio' name='<?php echo ROBO_GALLERY_PREFIX.'seo'; ?>' value='0' <?php if( !get_option(ROBO_GALLERY_PREFIX.'seo', '') ) echo " checked='checked'"; ?> /> <?php _e('Disable', 'rbs_gallery'); ?>
|
131 |
</label><br />
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.robosoft.co/robogallery
|
|
4 |
Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -92,8 +92,9 @@ This interface gallery button have wide range of the front end interface customi
|
|
92 |
* **Thumbnails Fade Effect** - in gallery implemented Fade effect for the hover of the gallery thumbnails. With such effect gallery hover animation become more attractive and eye catching.
|
93 |
* **Multisite Support** - in gallery implemented multisite support. You can install gallery in admin dashboard and enable plugin for all child blogs.
|
94 |
* **Advanced Load more function** - in gallery implemented very attractive navigation mode. Auto pre loading images like endless list of the gallery images. This gallery load more function have alot of customization options to make it work the way you need.
|
95 |
-
* **SEO code optimization** - in gallery implemented few front end code output modes. One simplified mode with all core front end gallery code elements another mode with additional not visible elements.
|
96 |
-
|
|
|
97 |
|
98 |
= Gallery Pro Key Features =
|
99 |
|
@@ -156,7 +157,10 @@ This interface gallery button have wide range of the front end interface customi
|
|
156 |
* **Thumbnails Fade Effect** - in gallery implemented Fade effect for the hover of the gallery thumbnails. With such effect gallery hover animation become more attractive and eye catching.
|
157 |
* **Multisite Support** - in gallery implemented multisite support. You can install gallery in admin dashboard and enable plugin for all child blogs.
|
158 |
* **Advanced Load more function** - in gallery implemented very attractive navigation mode. Auto pre loading images like endless list of the gallery images. This gallery load more function have alot of customization options to make it work the way you need.
|
159 |
-
* **SEO code optimization** - in gallery implemented few front end code output modes. One simplified mode with all core front end gallery code elements another mode with additional not visible elements.
|
|
|
|
|
|
|
160 |
|
161 |
= Gallery Advantages =
|
162 |
|
@@ -228,6 +232,10 @@ Yes, you can add description to every gallery image. In media manager section wh
|
|
228 |
|
229 |
No, we don't have any limitations for image types. You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
230 |
|
|
|
|
|
|
|
|
|
231 |
**How to define video for some gallery image?**
|
232 |
|
233 |
Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
|
@@ -236,10 +244,6 @@ Every gallery image have additional fields where you can define custom link, tit
|
|
236 |
|
237 |
You can insert gallery into post with shortcode tag
|
238 |
|
239 |
-
**How to change style of the gallery thumbnails border?**
|
240 |
-
|
241 |
-
When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border style. You can select one value from pre-defined list
|
242 |
-
|
243 |
**Is it possible to create direct link on the front end to the gallery?**
|
244 |
|
245 |
Yes, you can use generated direct link inside particular gallery settings
|
@@ -268,6 +272,14 @@ You can change background color of the gallery lightbox. When you open gallery s
|
|
268 |
|
269 |
Yes, in gallery options you can turn on/off border option
|
270 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
**How to turn on/off social buttons in gallery lightbox?**
|
272 |
|
273 |
When you open gallery settings you can find there gallery lightbox settings block, where you can turn on/off social buttons in gallery lightbox on the front end.
|
@@ -276,6 +288,22 @@ When you open gallery settings you can find there gallery lightbox settings bloc
|
|
276 |
|
277 |
You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
278 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
**How to generate shortcode for Wordpress page, post or widget?**
|
280 |
|
281 |
First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
|
@@ -284,25 +312,21 @@ First of all you can copy shortcode inside gallery settings , in separate shortc
|
|
284 |
|
285 |
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
286 |
|
287 |
-
**
|
288 |
|
289 |
-
|
290 |
|
291 |
-
**
|
292 |
|
293 |
-
When you open gallery
|
294 |
|
295 |
**How to make gallery with no space between thumbnails of the gallery?**
|
296 |
|
297 |
If you wish to make section with gallery without spacing between thumbnails you need just set horizontal and vertical spacing to 0 in gallery thumbnails view options
|
298 |
|
299 |
-
**
|
300 |
-
|
301 |
-
Yes, you can use HTML tags inside gallery image description field
|
302 |
-
|
303 |
-
**Is it possible to customize gallery image caption ?**
|
304 |
|
305 |
-
|
306 |
|
307 |
|
308 |
== Installation ==
|
@@ -717,6 +741,10 @@ If any problem occurs, please contact us.
|
|
717 |
|
718 |
== Changelog ==
|
719 |
|
|
|
|
|
|
|
|
|
720 |
= 2.3.0 =
|
721 |
* Updated gallery code front end code
|
722 |
* SEO option for enable/disable additional optimization
|
@@ -1341,6 +1369,10 @@ If any problem occurs, please contact us.
|
|
1341 |
|
1342 |
== Upgrade Notice ==
|
1343 |
|
|
|
|
|
|
|
|
|
1344 |
= 2.3.0 =
|
1345 |
Updated gallery code front end code
|
1346 |
SEO option for enable/disable additional optimization
|
4 |
Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 2.3.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
92 |
* **Thumbnails Fade Effect** - in gallery implemented Fade effect for the hover of the gallery thumbnails. With such effect gallery hover animation become more attractive and eye catching.
|
93 |
* **Multisite Support** - in gallery implemented multisite support. You can install gallery in admin dashboard and enable plugin for all child blogs.
|
94 |
* **Advanced Load more function** - in gallery implemented very attractive navigation mode. Auto pre loading images like endless list of the gallery images. This gallery load more function have alot of customization options to make it work the way you need.
|
95 |
+
* **SEO code optimization** - in gallery implemented few front end code output modes. One simplified mode with all core front end gallery code elements another mode with additional not visible elements. This option have additional modes. This SEO output modes giv you default output mode, thumbnail, thumnails+links mode.
|
96 |
+
* **Template** - in our gallery we have advanced templating engine for galler images description. Every hover text of gallery image could be edit and customized with buildin templating options.
|
97 |
+
* **Drag and Drop Category Manager** - in gallery implemented advanced category manager with drag and drop functionality. Category manager with simple and intuitive interface.
|
98 |
|
99 |
= Gallery Pro Key Features =
|
100 |
|
157 |
* **Thumbnails Fade Effect** - in gallery implemented Fade effect for the hover of the gallery thumbnails. With such effect gallery hover animation become more attractive and eye catching.
|
158 |
* **Multisite Support** - in gallery implemented multisite support. You can install gallery in admin dashboard and enable plugin for all child blogs.
|
159 |
* **Advanced Load more function** - in gallery implemented very attractive navigation mode. Auto pre loading images like endless list of the gallery images. This gallery load more function have alot of customization options to make it work the way you need.
|
160 |
+
* **SEO code optimization** - in gallery implemented few front end code output modes. One simplified mode with all core front end gallery code elements another mode with additional not visible elements. This option have additional modes. This SEO output modes giv you default output mode, thumbnail, thumnails+links mode.
|
161 |
+
* **Template** - in our gallery we have advanced templating engine for galler images description. Every hover text of gallery image could be edit and customized with buildin templating options.
|
162 |
+
* **Drag and Drop Category Manager** - in gallery implemented advanced category manager with drag and drop functionality. Category manager with simple and intuitive interface.
|
163 |
+
|
164 |
|
165 |
= Gallery Advantages =
|
166 |
|
232 |
|
233 |
No, we don't have any limitations for image types. You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
234 |
|
235 |
+
**How to change style of the gallery thumbnails border?**
|
236 |
+
|
237 |
+
When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border style. You can select one value from pre-defined list
|
238 |
+
|
239 |
**How to define video for some gallery image?**
|
240 |
|
241 |
Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
|
244 |
|
245 |
You can insert gallery into post with shortcode tag
|
246 |
|
|
|
|
|
|
|
|
|
247 |
**Is it possible to create direct link on the front end to the gallery?**
|
248 |
|
249 |
Yes, you can use generated direct link inside particular gallery settings
|
272 |
|
273 |
Yes, in gallery options you can turn on/off border option
|
274 |
|
275 |
+
**Do you have some limits for images amount in gallery?**
|
276 |
+
|
277 |
+
No, we don't have any limits for amount of the images in gallery
|
278 |
+
|
279 |
+
**How to define video for some gallery image?**
|
280 |
+
|
281 |
+
Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
|
282 |
+
|
283 |
**How to turn on/off social buttons in gallery lightbox?**
|
284 |
|
285 |
When you open gallery settings you can find there gallery lightbox settings block, where you can turn on/off social buttons in gallery lightbox on the front end.
|
288 |
|
289 |
You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
290 |
|
291 |
+
**Is it possible to use HTML in gallery image description ?**
|
292 |
+
|
293 |
+
Yes, you can use HTML tags inside gallery image description field
|
294 |
+
|
295 |
+
**Is it possible to customize gallery image caption ?**
|
296 |
+
|
297 |
+
In gallery settings you can find gallery images manager where you can change settings of every gallery image, one of the option it's caption of the gallery image
|
298 |
+
|
299 |
+
**How to crop uploaded gallery image?**
|
300 |
+
|
301 |
+
When you open gallery images manager you'll find there image edit mode where you can crop source image
|
302 |
+
|
303 |
+
**Is it possible to change color of the hovered image in gallery?**
|
304 |
+
|
305 |
+
Yes, you can easily change color of the hovered image in gallery in backend. In gallery settings we build-in comfortable color selector which make you able to change color of the gallery interface elements.
|
306 |
+
|
307 |
**How to generate shortcode for Wordpress page, post or widget?**
|
308 |
|
309 |
First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
|
312 |
|
313 |
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
314 |
|
315 |
+
**How to change font style of the gallery image caption?**
|
316 |
|
317 |
+
In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
|
318 |
|
319 |
+
**Is it possible to change transparency of the gallery lightbox background ?**
|
320 |
|
321 |
+
Yes, you can change gallery lightbox background transparency in gallery settings. Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block. When you open color selector for the gallery lightbox background you'll see there additional slider option for transparency value.
|
322 |
|
323 |
**How to make gallery with no space between thumbnails of the gallery?**
|
324 |
|
325 |
If you wish to make section with gallery without spacing between thumbnails you need just set horizontal and vertical spacing to 0 in gallery thumbnails view options
|
326 |
|
327 |
+
**Which permissions do I need to have on server for proper gallery installation?**
|
|
|
|
|
|
|
|
|
328 |
|
329 |
+
Our gallery do not require any special permissions for installation of the gallery or during upload of the gallery images. All requirements are basic: our gallery have the same requirements as Wordpress have.
|
330 |
|
331 |
|
332 |
== Installation ==
|
741 |
|
742 |
== Changelog ==
|
743 |
|
744 |
+
= 2.3.1 =
|
745 |
+
* Updated gallery front end code
|
746 |
+
* SEO configuration option for thumbnails and links code
|
747 |
+
|
748 |
= 2.3.0 =
|
749 |
* Updated gallery code front end code
|
750 |
* SEO option for enable/disable additional optimization
|
1369 |
|
1370 |
== Upgrade Notice ==
|
1371 |
|
1372 |
+
= 2.3.1 =
|
1373 |
+
Updated gallery front end code
|
1374 |
+
SEO configuration option for thumbnails and links code
|
1375 |
+
|
1376 |
= 2.3.0 =
|
1377 |
Updated gallery code front end code
|
1378 |
SEO option for enable/disable additional optimization
|
robogallery.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* Plugin Name: Robo Gallery
|
9 |
* Plugin URI: http://robosoft.co/robogallery
|
10 |
* Description: A responsive, easy and elegant way to show gallery.
|
11 |
-
* Version: 2.3.
|
12 |
* Author: RoboSoft (c)
|
13 |
* Author URI: http://robosoft.co/robogallery
|
14 |
* License: GPL-2.0+
|
@@ -19,7 +19,7 @@
|
|
19 |
|
20 |
if ( ! defined( 'WPINC' ) ) die;
|
21 |
define("ROBO_GALLERY", 1);
|
22 |
-
define("ROBO_GALLERY_VERSION", '2.3.
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|
8 |
* Plugin Name: Robo Gallery
|
9 |
* Plugin URI: http://robosoft.co/robogallery
|
10 |
* Description: A responsive, easy and elegant way to show gallery.
|
11 |
+
* Version: 2.3.1
|
12 |
* Author: RoboSoft (c)
|
13 |
* Author URI: http://robosoft.co/robogallery
|
14 |
* License: GPL-2.0+
|
19 |
|
20 |
if ( ! defined( 'WPINC' ) ) die;
|
21 |
define("ROBO_GALLERY", 1);
|
22 |
+
define("ROBO_GALLERY_VERSION", '2.3.1');
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|