Gallery – Photo Gallery and Images Gallery - Version 1.3.4

Version Description

  • New thumbnails click mode
  • Added new feature for enable/disable click with disabled buttons
  • Switch between lightbox and link mode with disabled buttons
Download this release

Release Info

Developer robosoft
Plugin Icon 128x128 Gallery – Photo Gallery and Images Gallery
Version 1.3.4
Comparing to
See all releases

Code changes from version 1.3.3 to 1.3.4

includes/frontend/rbs_gallery_class.php CHANGED
@@ -67,6 +67,8 @@ class roboGallery extends roboGalleryUtils{
67
  public $styleList = array();
68
  public $scriptList = array();
69
 
 
 
70
  function __construct($attr){
71
  $this->helper = new rbsHelper();
72
  $this->galleryId = 'rbs_gallery_'.uniqid();
@@ -221,6 +223,9 @@ class roboGallery extends roboGalleryUtils{
221
  $this->rbsBoxHoverStyle .= $this->getHoverShadown();
222
  }
223
  }
 
 
 
224
 
225
  if($this->options_id){
226
  $this->id = $this->real_id;
@@ -295,7 +300,7 @@ class roboGallery extends roboGalleryUtils{
295
  if ( $this->pro ) $this->setHoverType();
296
 
297
  $this->linkIcon = $this->getTemplateItem( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'linkIcon', true ), 'rbsLinkIcon', 1 );
298
- $this->zoomIcon = $this->getTemplateItem( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'zoomIcon', true ), 'rbsZoomIcon', 1 ); //, ' rbs-lightbox'
299
  $this->titleHover = $this->getTemplateItem( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'showTitle', true ), 'rbsTitle', '@TITLE@' );
300
 
301
  /* robo_gallery */
@@ -383,7 +388,7 @@ class roboGallery extends roboGalleryUtils{
383
 
384
  $this->returnHtml .= '
385
  <div class="rbs-img category'.$img['catid'].'" '.( isset($img['col']) && $img['col'] ?' data-columns="'.$img['col'].'" ' :'').'>
386
- <div class="rbs-img-image rbs-lightbox" '.( isset($img['effect']) && $img['effect'] ?' data-overlay-effect="'.$img['effect'].'" ' :'').' >
387
  <div data-thumbnail="'.$img['thumb'].'" data-width="'.( $sizeType ? $width : $img['sizeW'] ).'" data-height="'.($sizeType?$height:$img['sizeH']).'" ></div>
388
  <div data-popup="'.$link.'" title="'.$lightboxText.'"></div>
389
  '.$this->getHover($img).'
67
  public $styleList = array();
68
  public $scriptList = array();
69
 
70
+ public $thumbClick = 0;
71
+
72
  function __construct($attr){
73
  $this->helper = new rbsHelper();
74
  $this->galleryId = 'rbs_gallery_'.uniqid();
223
  $this->rbsBoxHoverStyle .= $this->getHoverShadown();
224
  }
225
  }
226
+
227
+ $this->thumbClick = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'thumbClick', true );
228
+
229
 
230
  if($this->options_id){
231
  $this->id = $this->real_id;
300
  if ( $this->pro ) $this->setHoverType();
301
 
302
  $this->linkIcon = $this->getTemplateItem( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'linkIcon', true ), 'rbsLinkIcon', 1 );
303
+ $this->zoomIcon = $this->getTemplateItem( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'zoomIcon', true ), 'rbsZoomIcon', 1 , ($this->thumbClick?' rbs-lightbox':'') ); //, ' rbs-lightbox'
304
  $this->titleHover = $this->getTemplateItem( get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'showTitle', true ), 'rbsTitle', '@TITLE@' );
305
 
306
  /* robo_gallery */
388
 
389
  $this->returnHtml .= '
390
  <div class="rbs-img category'.$img['catid'].'" '.( isset($img['col']) && $img['col'] ?' data-columns="'.$img['col'].'" ' :'').'>
391
+ <div class="rbs-img-image '.(!$this->thumbClick?' rbs-lightbox':'').'" '.( isset($img['effect']) && $img['effect'] ?' data-overlay-effect="'.$img['effect'].'" ' :'').' >
392
  <div data-thumbnail="'.$img['thumb'].'" data-width="'.( $sizeType ? $width : $img['sizeW'] ).'" data-height="'.($sizeType?$height:$img['sizeH']).'" ></div>
393
  <div data-popup="'.$link.'" title="'.$lightboxText.'"></div>
394
  '.$this->getHover($img).'
includes/options/rbs_gallery_options_hover.php CHANGED
@@ -22,6 +22,20 @@ $hover_group = new_cmb2_box( array(
22
  'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  $hover_group->add_field( array(
26
  'name' => __('Hover Mode', 'rbs_gallery' ),
27
  'id' => ROBO_GALLERY_PREFIX . 'hover',
@@ -38,8 +52,7 @@ $hover_group->add_field( array(
38
  '1' => '.rbs_gallery_hover_blok, .rbs_gallery_hover_options_blok',
39
  '2' => '.rbs_gallery_hover_blok, .rbs_gallery_hover_template_blok',
40
  ),
41
- 'before_row' => '
42
- <div class="rbs_block"> <br />',
43
  'after_row' => '
44
  <div class="rbs_gallery_hover_blok">'
45
  )
22
  'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
+ $hover_group->add_field( array(
26
+ 'name' => __('Click Thumbnail', 'rbs_gallery' ),
27
+ 'id' => ROBO_GALLERY_PREFIX . 'thumbClick',
28
+ 'type' => 'rbsselect',
29
+ 'show_option_none' => false,
30
+ 'default' => rbs_gallery_set_checkbox_default_for_new_post(0),
31
+ 'options' => array(
32
+ '0' => __( 'On' , 'rbs_gallery' ),
33
+ '1' => __( 'Off' , 'rbs_gallery' ),
34
+ ),
35
+ 'before_row' => '
36
+ <div class="rbs_block"> <br />',
37
+ ));
38
+
39
  $hover_group->add_field( array(
40
  'name' => __('Hover Mode', 'rbs_gallery' ),
41
  'id' => ROBO_GALLERY_PREFIX . 'hover',
52
  '1' => '.rbs_gallery_hover_blok, .rbs_gallery_hover_options_blok',
53
  '2' => '.rbs_gallery_hover_blok, .rbs_gallery_hover_template_blok',
54
  ),
55
+
 
56
  'after_row' => '
57
  <div class="rbs_gallery_hover_blok">'
58
  )
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.3
7
- Stable tag: 1.3.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -38,6 +38,44 @@ Gallery with highly customizable interface, advanced and FREE Wordpress images g
38
 
39
  = Gallery Key Features =
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  * **Fully responsive and Mobile features** - advanced mobility gallery. Gallery implemented with advanced settings for different devices screen size.
42
  * **Grid layout** - in gallery implemented not only classic gallery layout, but also grid layout for the modern style gallery with different size of the gallery thumbnails.
43
  * **Fully customizable interface** - all interface elements of the gallery are customizable. You can easily change colors, size and position of every gallery interface element. Gallery thumbnails description could be customized with build in tags and HTML/CSS.
@@ -80,7 +118,7 @@ Gallery with highly customizable interface, advanced and FREE Wordpress images g
80
  * **Custom Thumbnails Shadows** - shadow it's very stylish element of the thumbnail images on the front end. You can make your gallery looks absolutely different with different styled shadow.
81
  * **Advanced Compatibility** - in our gallery we implement advanced compatibility options to avoid conflict with libraries of another plugins and theme. You can switch between modes to find properly value for your gallery and your case.
82
  * **Advanced Social Sharing** - advanced social sharing functionality in lightbox. Implemented deep linking functionality for the gallery images social sharing services Facebook, Twitter, Pinterest, Google+
83
-
84
 
85
  = Gallery Advantages =
86
 
@@ -139,29 +177,37 @@ You don't need do any additional configurations or manual code changes. You can
139
 
140
  Just install it using regular Wordpress plugins installing mechanism. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
141
 
142
- = Do you have some conflict in gallery back end? =
143
-
144
- If you have some conflict in gallery back end you can sort it with new compatibility option. You can switch between standard and alternative jquery library. This modes implemented to help you to avoid any conflicts with another libraries from wordpress themes or another plugin.
145
-
146
  = How to upload images to the gallery? =
147
 
148
  When you create new gallery or open already existent gallery for edit on the right side of the edit gallery section you'll see gallery images manager button. When you open gallery images manager you'll be able there edit all gallery images. Upload, edit or delete. In gallery images manager you can use drag and drop gallery images upload tool.
149
 
150
- = Is it possible create gallery in Wordpress post with Gallery? =
151
 
152
- Yes, you can insert gallery into post with shortcode tag
153
 
154
  = How to change quality of the gallery thumbnails? =
155
 
156
  Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
157
 
 
 
 
 
 
 
 
 
158
  = What can I do if some gallery interface elements in backend do not work properly? =
159
 
160
  If you have some conflict in gallery back end you can sort it with new compatibility option. If combo box element do not drop down you can switch between classic and modern style, as result you can avoid conflict with another code.
161
 
162
- = How to customize hover effect? =
163
 
164
- In gallery settings you can find hover type options. In settings of the gallery you can select custom hover effect settings or even template for customization of the gallery thumbnails hover
 
 
 
 
165
 
166
  = How I can create custom (grid) layout of the thumbnails? =
167
 
@@ -171,18 +217,14 @@ In our gallery we implemented layout based on columns amount. So you can general
171
 
172
  When you create gallery in plugin galleries manager you can go to the post or page editor and there using special wizard button insert gallery into your wordpress post or page. Another way you can insert your gallery manually using shortcode, which you can find in gallery edit mode in shortcode section on the right side of the gallery settings
173
 
174
- = How to define custom hover effect for some gallery thumbnail? =
175
 
176
- When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have custom effect field where you can select different hover effect for every image of the gallery.
177
 
178
  = Do you have some limit for images size in gallery? =
179
 
180
  No, we don't have any limits for image size in our gallery.
181
 
182
- = How to generate shortcode for Wordpress page, post or widget? =
183
-
184
- 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
185
-
186
  = Where specify description of the gallery images? =
187
 
188
  When you open gallery settings inside you'll find images manager section. Images manager make you able to add/edit descriptions and titles of every gallery image
@@ -191,42 +233,42 @@ When you open gallery settings inside you'll find images manager section. Images
191
 
192
  In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
193
 
194
- = Do you have some limits for images amount in gallery? =
195
-
196
- No, we don't have any limits for amount of the images in gallery
197
-
198
- = Do you have some limits for images types in gallery? =
199
 
200
- You can use any standard file type in our gallery: png, jpg, jpeg, gif
201
 
202
  = How to set description text below image in the lightbox? =
203
 
204
  In gallery settings you can find lightbox section and if you need to show description of the images below images in the lightbox you need to select text source in lightbox settings from defined values.
205
 
 
 
 
 
206
  = Is it possible to create direct link on the front end to the gallery? =
207
 
208
  Yes, you can use generated direct link inside particular gallery settings
209
 
210
- = How to change font size of the gallery image caption? =
211
 
212
- In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
213
 
214
- = How to define video for some gallery image? =
215
 
216
- 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
217
 
218
  = Is it possible to turn off border of the gallery thumbnails? =
219
 
220
  Yes, in gallery options you can turn on/off border option
221
 
222
- = How to customize border of the gallery thumbnails? =
223
-
224
- In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
225
-
226
  = How to define custom link for some gallery images? =
227
 
228
  Every gallery image have additional fields where you can define custom link, title, description. All this options you can find in gallery images manager, inside general gallery settings
229
 
 
 
 
 
230
  = How to define size of the gallery images thumbnails? =
231
 
232
  Our gallery is fully responsive and gallery thumbnails size depend of a lot of factors. Gallery calculate thumbnails automatically depend of the general gallery size and gallery layout settings. First of all you can define ratio values for gallery thumbnails. Size of the thumbnails could be selected from standard pre-defined wordpress sizes: thumbnail, medium, large, full
@@ -235,9 +277,9 @@ Our gallery is fully responsive and gallery thumbnails size depend of a lot of f
235
 
236
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
237
 
238
- = How to change spacing between thumbnails? =
239
 
240
- In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
241
 
242
  = How to hide titles of the gallery image in lightbox ? =
243
 
@@ -251,23 +293,18 @@ You can change size, color and style of gallery thumbnails borders and shadows.
251
 
252
  Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
253
 
254
-
255
  = How to change color of the gallery interface elements? =
256
 
257
  Color of every gallery front end interface element could be changed changed in admin section with color selector. There you can change colors of the menu buttons, load more button, borders, shadows, backgrounds and etc.
258
 
259
- = How to customize gallery layouts for different screen resolutions? =
260
 
261
- In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
262
 
263
  = How to use multi-category functionality of the gallery? =
264
 
265
  In our gallery we implemented multi-categories structure. Every gallery category could have child and parent gallery, which you can manually define in gallery settings
266
 
267
- = How to make gallery thumbnails with rounded corners? =
268
-
269
- In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
270
-
271
  = How to enable lazy load in gallery options? =
272
 
273
  In gallery settings you can find option to enable/disable lazy load, also there you'll have alot of additional options for customization of the loading process
@@ -284,46 +321,46 @@ In gallery settings we have few options which makes you able to select amount of
284
 
285
  In gallery settings you can find images manager where you can change settings of every image, one of the option it's caption of the image
286
 
287
- = How to change font style of the gallery image caption? =
288
-
289
- In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
290
-
291
  = How to change font color of the gallery image description text? =
292
 
293
  In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change color of the text
294
 
295
- = Is it possible to create target blank links? =
296
 
297
- Yes. When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have target blank field below link field of the gallery image.
298
 
299
- = How to load more function work? =
300
 
301
- In gallery admin section you can define amount of the images for the first load and after click on load more button. Load more it's such google gallery style pagination functionality which make you able to limit amount of the images for the first load
302
 
303
  = Is it possible to use HTML in image description ? =
304
 
305
  Yes, you can use HTML tags inside gallery image description field
306
 
307
- = How to change ordering of the gallery images? =
308
 
309
- When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
310
 
311
  = How to define custom ALT for gallery image? =
312
 
313
  When you open gallery images manager you can define alt for every gallery image there
314
 
315
- = Where to change settings of the image of the gallery? =
316
 
317
- Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
318
 
319
- = How to rotate uploaded gallery image? =
320
 
321
- When you open gallery images manager you'll find there image edit mode where you can rotate source image
322
 
323
  = How to crop uploaded gallery image? =
324
 
325
  When you open gallery images manager you'll find there image edit mode where you can crop source image
326
 
 
 
 
 
327
  = How to flip uploaded gallery image? =
328
 
329
  When you open gallery images manager you'll find there image edit mode where you can flip source image
@@ -340,14 +377,14 @@ Yes, gallery have fade hover effect
340
 
341
  In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change size of the text
342
 
343
- = How to change width of the gallery thumbnails border? =
344
-
345
- When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border width in pixels.
346
-
347
  = How to change color of the gallery thumbnails border? =
348
 
349
  When you enable border in gallery settings you will see multiply options for customization of the border. One from this options it's border color. You can select color using color selector
350
 
 
 
 
 
351
  = Is it possible to change transparency of the hover shutter? =
352
 
353
  Yes, it's possible to change transparency in gallery settings
@@ -356,14 +393,14 @@ Yes, it's possible to change transparency in gallery settings
356
 
357
  In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which gonna help you to build in some gallery images elements into hover
358
 
359
- = How many menu buttons styles do you have in gallery menu ? =
360
-
361
- Gallery menu have multiply configuration options. Some of the options changing color of the buttons, some of them changing style of the buttons, which makes buttons for example 3d or with rounded corners
362
-
363
  = Do you have Polaroid style in your gallery? =
364
 
365
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
366
 
 
 
 
 
367
  = How to make gallery with no space between thumbnails of the gallery? =
368
 
369
  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
@@ -518,6 +555,11 @@ If any problem occurs, please contact us.
518
 
519
  == Changelog ==
520
 
 
 
 
 
 
521
  = 1.3.3 =
522
  * Added new lightbox options
523
  * Possibility to select caption, title or description below image in lightbox
@@ -633,6 +675,9 @@ If any problem occurs, please contact us.
633
 
634
  == Upgrade Notice ==
635
 
 
 
 
636
  = 1.3.3 =
637
  New lightbox options, possibility to select caption, title or description below image in lightbox
638
 
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.3
7
+ Stable tag: 1.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
38
 
39
  = Gallery Key Features =
40
 
41
+ * **Fully responsive and Mobile features** - advanced mobility gallery. Gallery implemented with advanced settings for different devices screen size.
42
+ * **Fade effects** - one of the gallery hover animation it's classic fade effect.
43
+ * **Batch images upload** - gallery have advanced media manager which allow to upload batch of the images by one click. Just drag and drop set of the gallery images and it's upload automatically to the server.
44
+ * **Auto-resizing for thumbnails and images** - gallery media manager allow you make additional customization of the gallery images, like: rotation, flip, crop, manual resize.
45
+ * **Customizable 15 hover effects** - all gallery hover effects working in cooperation with gallery interface configuration options. You can easily change style and colors of the hover animation elements.
46
+ * **Implemented to avoid AJAX libs conflicts** - all gallery code implemented in native Wordpress style as result our gallery don't have any conflicts and work really stable.
47
+ * **Polaroid style gallery** - with our gallery you can create Polaroid style gallery just with few clicks.
48
+ * **Build in colors selector** - in gallery you can easily change color of any gallery
49
+ * **Social sharing** - gallery lightbox support social sharing in twitter, facebook, google plus and pinterest
50
+ * **Build in borders and shadows settings** - gallery borders and shadows have advanced options for configuration design and style of this gallery interface elements
51
+ * **Font settings** - gallery have build in advanced text style editor options. With this options you can fully cusyomize title, caption, description of the every gallery image
52
+ * **Different resolutions** - gallery have implemented advanced size control options where you can define layout or fixed size for the gallery elements on different screen resolutions
53
+ * **Implemented in native Wordpress style using native classes** - gallery fully native for Wordpress implemented without any hacks and tricks
54
+ * **Multi Categories** - gallery implemented with multi categories support. You can create your own galleries tree, depend of your needs
55
+ * **Classic gallery layout** - layout of the gallery could have classic style or grid layout, every gallery on page could have own styles and settings
56
+ * **Advanced pagination function** - pagination function of the gallery implemented in google load more style
57
+ * **Work in IE, Firefox, Safari, Opera, Chrome** - gallery work properly in all latest versions of the popular browsers
58
+ * **Lazy loading option** - in gallery implemented advanced lazy loading options, for the case when you have big sets of the images you can define amount of the galleries images for the first load and for the next steps of the load more option
59
+ * **Advanced cache options** - in gallery implemented advanced images caching options
60
+ * **Overlay effects** - all hover effects of the gallery thumbnails are highly customizable and have full set of options
61
+ * **Backend text settings preview** - all gallery images titles, captions, descriptions are highly customizable also we have life preview of the changes in gallery backend
62
+ * **Resizing crop function** - in gallery media managed you'll find great set of very useful features for example gallery images crop, and manual resizing
63
+ * **Optional mobile touch support** - our gallery support mobile devices and you can customize gallery layout settings for different screen sizes
64
+ * **Custom ordering of the images** - ordering for all images of the gallery could be easily changed manually in media manager or you can find order by options in general gallery settings
65
+ * **Ability to insert gallery to the Wordpress post, page, widget** - every gallery could be insert in to post, page or widget with build in shortcode tag or using wizard button - shortcode generator in post or page editor
66
+ * **Gallery lightbox social buttons** - in gallery settings you can turn on/off social buttons
67
+ * **Gallery lightbox background color** - in gallery lightbox settings you can change color of the background with comfortable color selector
68
+ * **Gallery lightbox background transparency** - in gallery lightbox settings you can change transparency of the background with comfortable color selector
69
+ * **Gallery lightbox font color** - in gallery lightbox settings you can change color of the font with comfortable color selector
70
+ * **Gallery lightbox font transparency** - in gallery lightbox settings you can change transparency of the font with comfortable color selector
71
+ * **Clone gallery** - if you have hundreds of galleries on the website this feature is really useful for you! Clone settings of another gallery to apply it to another galleries. So you can copy styles of the source gallery to as much galleries as you need just by one click.
72
+ * **Custom Thumbnails Shadows** - shadow it's very stylish element of the thumbnail images on the front end. You can make your gallery looks absolutely different with different styled shadow.
73
+ * **Advanced Compatibility** - in our gallery we implement advanced compatibility options to avoid conflict with libraries of another plugins and theme. You can switch between modes to find properly value for your gallery and your case.
74
+ * **Advanced Social Sharing** - advanced social sharing functionality in lightbox. Implemented deep linking functionality for the gallery images social sharing services Facebook, Twitter, Pinterest, Google+
75
+ * **Click Thumbnails** - advanced click functionality. You can use click on buttons or on the gallery thumbnails to enlarge gallery image or open gallery image link. With new functionality you can combine absolutely different features of the gallery clicking functionality.
76
+
77
+ = Gallery Pro Key Features =
78
+
79
  * **Fully responsive and Mobile features** - advanced mobility gallery. Gallery implemented with advanced settings for different devices screen size.
80
  * **Grid layout** - in gallery implemented not only classic gallery layout, but also grid layout for the modern style gallery with different size of the gallery thumbnails.
81
  * **Fully customizable interface** - all interface elements of the gallery are customizable. You can easily change colors, size and position of every gallery interface element. Gallery thumbnails description could be customized with build in tags and HTML/CSS.
118
  * **Custom Thumbnails Shadows** - shadow it's very stylish element of the thumbnail images on the front end. You can make your gallery looks absolutely different with different styled shadow.
119
  * **Advanced Compatibility** - in our gallery we implement advanced compatibility options to avoid conflict with libraries of another plugins and theme. You can switch between modes to find properly value for your gallery and your case.
120
  * **Advanced Social Sharing** - advanced social sharing functionality in lightbox. Implemented deep linking functionality for the gallery images social sharing services Facebook, Twitter, Pinterest, Google+
121
+ * **Click Thumbnails** - advanced click functionality. You can use click on buttons or on the gallery thumbnails to enlarge gallery image or open gallery image link. With new functionality you can combine absolutely different features of the gallery clicking functionality.
122
 
123
  = Gallery Advantages =
124
 
177
 
178
  Just install it using regular Wordpress plugins installing mechanism. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
179
 
 
 
 
 
180
  = How to upload images to the gallery? =
181
 
182
  When you create new gallery or open already existent gallery for edit on the right side of the edit gallery section you'll see gallery images manager button. When you open gallery images manager you'll be able there edit all gallery images. Upload, edit or delete. In gallery images manager you can use drag and drop gallery images upload tool.
183
 
184
+ = Do you have some conflict in gallery back end? =
185
 
186
+ If you have some conflict in gallery back end you can sort it with new compatibility option. You can switch between standard and alternative jquery library. This modes implemented to help you to avoid any conflicts with another libraries from wordpress themes or another plugin.
187
 
188
  = How to change quality of the gallery thumbnails? =
189
 
190
  Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
191
 
192
+ = How to customize hover effect? =
193
+
194
+ In gallery settings you can find hover type options. In settings of the gallery you can select custom hover effect settings or even template for customization of the gallery thumbnails hover
195
+
196
+ = Is it possible create gallery in Wordpress post with Gallery? =
197
+
198
+ Yes, you can insert gallery into post with shortcode tag
199
+
200
  = What can I do if some gallery interface elements in backend do not work properly? =
201
 
202
  If you have some conflict in gallery back end you can sort it with new compatibility option. If combo box element do not drop down you can switch between classic and modern style, as result you can avoid conflict with another code.
203
 
204
+ = How to define custom hover effect for some gallery thumbnail? =
205
 
206
+ When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have custom effect field where you can select different hover effect for every image of the gallery.
207
+
208
+ = How to generate shortcode for Wordpress page, post or widget? =
209
+
210
+ 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
211
 
212
  = How I can create custom (grid) layout of the thumbnails? =
213
 
217
 
218
  When you create gallery in plugin galleries manager you can go to the post or page editor and there using special wizard button insert gallery into your wordpress post or page. Another way you can insert your gallery manually using shortcode, which you can find in gallery edit mode in shortcode section on the right side of the gallery settings
219
 
220
+ = Do you have some limits for images amount in gallery? =
221
 
222
+ No, we don't have any limits for amount of the images in gallery
223
 
224
  = Do you have some limit for images size in gallery? =
225
 
226
  No, we don't have any limits for image size in our gallery.
227
 
 
 
 
 
228
  = Where specify description of the gallery images? =
229
 
230
  When you open gallery settings inside you'll find images manager section. Images manager make you able to add/edit descriptions and titles of every gallery image
233
 
234
  In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
235
 
236
+ = How to define video for some gallery image? =
 
 
 
 
237
 
238
+ 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
239
 
240
  = How to set description text below image in the lightbox? =
241
 
242
  In gallery settings you can find lightbox section and if you need to show description of the images below images in the lightbox you need to select text source in lightbox settings from defined values.
243
 
244
+ = Do you have some limits for images types in gallery? =
245
+
246
+ You can use any standard file type in our gallery: png, jpg, jpeg, gif
247
+
248
  = Is it possible to create direct link on the front end to the gallery? =
249
 
250
  Yes, you can use generated direct link inside particular gallery settings
251
 
252
+ = How to customize border of the gallery thumbnails? =
253
 
254
+ In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
255
 
256
+ = How to change font size of the gallery image caption? =
257
 
258
+ In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
259
 
260
  = Is it possible to turn off border of the gallery thumbnails? =
261
 
262
  Yes, in gallery options you can turn on/off border option
263
 
 
 
 
 
264
  = How to define custom link for some gallery images? =
265
 
266
  Every gallery image have additional fields where you can define custom link, title, description. All this options you can find in gallery images manager, inside general gallery settings
267
 
268
+ = How to change spacing between thumbnails? =
269
+
270
+ In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
271
+
272
  = How to define size of the gallery images thumbnails? =
273
 
274
  Our gallery is fully responsive and gallery thumbnails size depend of a lot of factors. Gallery calculate thumbnails automatically depend of the general gallery size and gallery layout settings. First of all you can define ratio values for gallery thumbnails. Size of the thumbnails could be selected from standard pre-defined wordpress sizes: thumbnail, medium, large, full
277
 
278
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
279
 
280
+ = How to customize gallery layouts for different screen resolutions? =
281
 
282
+ In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
283
 
284
  = How to hide titles of the gallery image in lightbox ? =
285
 
293
 
294
  Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
295
 
 
296
  = How to change color of the gallery interface elements? =
297
 
298
  Color of every gallery front end interface element could be changed changed in admin section with color selector. There you can change colors of the menu buttons, load more button, borders, shadows, backgrounds and etc.
299
 
300
+ = How to make gallery thumbnails with rounded corners? =
301
 
302
+ In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
303
 
304
  = How to use multi-category functionality of the gallery? =
305
 
306
  In our gallery we implemented multi-categories structure. Every gallery category could have child and parent gallery, which you can manually define in gallery settings
307
 
 
 
 
 
308
  = How to enable lazy load in gallery options? =
309
 
310
  In gallery settings you can find option to enable/disable lazy load, also there you'll have alot of additional options for customization of the loading process
321
 
322
  In gallery settings you can find images manager where you can change settings of every image, one of the option it's caption of the image
323
 
 
 
 
 
324
  = How to change font color of the gallery image description text? =
325
 
326
  In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change color of the text
327
 
328
+ = How to change font style of the gallery image caption? =
329
 
330
+ In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
331
 
332
+ = Is it possible to create target blank links? =
333
 
334
+ Yes. When you open gallery media manager you'll see there list of the gallery images. Click on some image and on the right side you'll see images options. Every gallery image have target blank field below link field of the gallery image.
335
 
336
  = Is it possible to use HTML in image description ? =
337
 
338
  Yes, you can use HTML tags inside gallery image description field
339
 
340
+ = How to load more function work? =
341
 
342
+ In gallery admin section you can define amount of the images for the first load and after click on load more button. Load more it's such google gallery style pagination functionality which make you able to limit amount of the images for the first load
343
 
344
  = How to define custom ALT for gallery image? =
345
 
346
  When you open gallery images manager you can define alt for every gallery image there
347
 
348
+ = How to change ordering of the gallery images? =
349
 
350
+ When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
351
 
352
+ = Where to change settings of the image of the gallery? =
353
 
354
+ Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
355
 
356
  = How to crop uploaded gallery image? =
357
 
358
  When you open gallery images manager you'll find there image edit mode where you can crop source image
359
 
360
+ = How to rotate uploaded gallery image? =
361
+
362
+ When you open gallery images manager you'll find there image edit mode where you can rotate source image
363
+
364
  = How to flip uploaded gallery image? =
365
 
366
  When you open gallery images manager you'll find there image edit mode where you can flip source image
377
 
378
  In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change size of the text
379
 
 
 
 
 
380
  = How to change color of the gallery thumbnails border? =
381
 
382
  When you enable border in gallery settings you will see multiply options for customization of the border. One from this options it's border color. You can select color using color selector
383
 
384
+ = How to change width of the gallery thumbnails border? =
385
+
386
+ When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border width in pixels.
387
+
388
  = Is it possible to change transparency of the hover shutter? =
389
 
390
  Yes, it's possible to change transparency in gallery settings
393
 
394
  In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which gonna help you to build in some gallery images elements into hover
395
 
 
 
 
 
396
  = Do you have Polaroid style in your gallery? =
397
 
398
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
399
 
400
+ = How many menu buttons styles do you have in gallery menu ? =
401
+
402
+ Gallery menu have multiply configuration options. Some of the options changing color of the buttons, some of them changing style of the buttons, which makes buttons for example 3d or with rounded corners
403
+
404
  = How to make gallery with no space between thumbnails of the gallery? =
405
 
406
  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
555
 
556
  == Changelog ==
557
 
558
+ = 1.3.4 =
559
+ * New thumbnails click mode
560
+ * Added new feature for enable/disable click with disabled buttons
561
+ * Switch between lightbox and link mode with disabled buttons
562
+
563
  = 1.3.3 =
564
  * Added new lightbox options
565
  * Possibility to select caption, title or description below image in lightbox
675
 
676
  == Upgrade Notice ==
677
 
678
+ = 1.3.4 =
679
+ Switch between lightbox and link mode with disabled buttons
680
+
681
  = 1.3.3 =
682
  New lightbox options, possibility to select caption, title or description below image in lightbox
683
 
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: 1.3.3
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
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: 1.3.4
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+