Gallery – Photo Gallery and Images Gallery - Version 1.5.10

Version Description

  • New configuration option for post generator management
  • New Show/Hide post text field in plugin settings
Download this release

Release Info

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

Code changes from version 1.5.9 to 1.5.10

includes/extensions/rbs_create_post_ajax.php CHANGED
@@ -55,10 +55,12 @@ if(!function_exists('rbs_ajax_create_article_form')){
55
  <th scope="row"><label for="rbs_post_create_slug"><?php _e('Slug','rbs_gallery'); ?>:</label></th>
56
  <td><input name="rbs_post_create_slug" id="rbs_post_create_slug" value="<?php echo 'post_'.$post_info->post_name;?>" class="regular-text" type="text"></td>
57
  </tr>
 
58
  <tr>
59
  <th scope="row"><label for="rbs_post_create_text"><?php _e('Text','rbs_gallery'); ?>:</label></th>
60
  <td><textarea name="rbs_post_create_text" rows="6" cols="50" id="rbs_post_create_text" class="large-text code">[robo-gallery id="<?php echo (int) $_POST['galleryid'] ; ?>"]</textarea></td>
61
  </tr>
 
62
  </tbody>
63
  </table>
64
  <?php
55
  <th scope="row"><label for="rbs_post_create_slug"><?php _e('Slug','rbs_gallery'); ?>:</label></th>
56
  <td><input name="rbs_post_create_slug" id="rbs_post_create_slug" value="<?php echo 'post_'.$post_info->post_name;?>" class="regular-text" type="text"></td>
57
  </tr>
58
+ <?php if( !get_option(ROBO_GALLERY_PREFIX.'postShowText', 0) ) { ?>
59
  <tr>
60
  <th scope="row"><label for="rbs_post_create_text"><?php _e('Text','rbs_gallery'); ?>:</label></th>
61
  <td><textarea name="rbs_post_create_text" rows="6" cols="50" id="rbs_post_create_text" class="large-text code">[robo-gallery id="<?php echo (int) $_POST['galleryid'] ; ?>"]</textarea></td>
62
  </tr>
63
+ <?php } ?>
64
  </tbody>
65
  </table>
66
  <?php
includes/rbs_gallery_menu.php CHANGED
@@ -47,6 +47,8 @@ if(!function_exists('robo_gallery_settings_submenu_page')){
47
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'jqueryVersion' );
48
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'switchStyle' );
49
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'delay' );
 
 
50
  }
51
 
52
  }
47
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'jqueryVersion' );
48
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'switchStyle' );
49
  register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'delay' );
50
+ register_setting( 'rbs_gallery_settings', ROBO_GALLERY_PREFIX.'postShowText' );
51
+
52
  }
53
 
54
  }
includes/rbs_gallery_settings.php CHANGED
@@ -62,10 +62,29 @@ wp_enqueue_style ( 'toolbox-gallery-about', ROBO_GALLERY_URL.'css/admin/about.c
62
  <input name="<?php echo ROBO_GALLERY_PREFIX.'delay'; ?>" id="<?php echo ROBO_GALLERY_PREFIX.'delay'; ?>" value="<?php echo get_option(ROBO_GALLERY_PREFIX.'delay', '1000'); ?>" class="small-text" type="text"> ms.
63
  </td>
64
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  </table>
 
66
  <p class="submit">
67
  <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php _e('Save Changes', 'rbs_gallery'); ?>" />
68
  </p>
 
69
  </form>
70
  </div>
71
  <?php
62
  <input name="<?php echo ROBO_GALLERY_PREFIX.'delay'; ?>" id="<?php echo ROBO_GALLERY_PREFIX.'delay'; ?>" value="<?php echo get_option(ROBO_GALLERY_PREFIX.'delay', '1000'); ?>" class="small-text" type="text"> ms.
63
  </td>
64
  </tr>
65
+ <tr>
66
+ <th colspan="2"><h2><?php _e('Create Post Settings', 'rbs_gallery'); ?></h2></th>
67
+ </tr>
68
+ <tr>
69
+ <th scope="row"><?php _e('Show Text', 'rbs_gallery'); ?></th>
70
+ <td>
71
+ <fieldset>
72
+ <legend class="screen-reader-text"><span><?php _e('Show Text', 'rbs_gallery'); ?></span></legend>
73
+ <label title='<?php _e('Show', 'rbs_gallery'); ?>'>
74
+ <input type='radio' name='<?php echo ROBO_GALLERY_PREFIX.'postShowText'; ?>' value='0' <?php if( !get_option(ROBO_GALLERY_PREFIX.'postShowText', '') ) echo " checked='checked'"; ?> /> <?php _e('Show', 'rbs_gallery'); ?>
75
+ </label><br />
76
+ <label title='<?php _e('Hide', 'rbs_gallery'); ?>'>
77
+ <input type='radio' name='<?php echo ROBO_GALLERY_PREFIX.'postShowText'; ?>' value='1' <?php if( get_option(ROBO_GALLERY_PREFIX.'postShowText')=='1' ) echo " checked='checked'"; ?> /> <?php _e('Hide', 'rbs_gallery'); ?>
78
+ </label><br />
79
+ </fieldset>
80
+ </td>
81
+ </tr>
82
  </table>
83
+
84
  <p class="submit">
85
  <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php _e('Save Changes', 'rbs_gallery'); ?>" />
86
  </p>
87
+
88
  </form>
89
  </div>
90
  <?php
js/admin/extensions/create_post.js CHANGED
@@ -104,7 +104,10 @@
104
  var categoryId = $('#rbs_post_create_category').find(":selected").val();
105
  var title = $('#rbs_post_create_title').val();
106
  var slug = $('#rbs_post_create_slug').val();
107
- var content_text = $('#rbs_post_create_text').val();
 
 
 
108
 
109
  rbs_insert_post_content.html(progressHtml);
110
 
104
  var categoryId = $('#rbs_post_create_category').find(":selected").val();
105
  var title = $('#rbs_post_create_title').val();
106
  var slug = $('#rbs_post_create_slug').val();
107
+
108
+ var content_text = '';
109
+ if( $('#rbs_post_create_text').length ) content_text = $('#rbs_post_create_text').val();
110
+
111
 
112
  rbs_insert_post_content.html(progressHtml);
113
 
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.5.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -220,14 +220,6 @@ You can use any standard file type in our gallery: png, jpg, jpeg, gif
220
 
221
  Yes, you can insert gallery into post with shortcode tag
222
 
223
- = How I can create custom (grid) layout of the thumbnails? =
224
-
225
- In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
226
-
227
- = How to change font size of the gallery image caption? =
228
-
229
- In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
230
-
231
  = How to change quality of the gallery thumbnails? =
232
 
233
  Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
@@ -236,6 +228,14 @@ Quality of the gallery thumbnails could be easily changed in gallery size option
236
 
237
  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
238
 
 
 
 
 
 
 
 
 
239
  = How to customize border of the gallery thumbnails? =
240
 
241
  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
@@ -256,14 +256,14 @@ In gallery setting you can select which text show below image in gallery lightbo
256
 
257
  No, we don't have any limits for image size in our gallery.
258
 
259
- = How to hide titles of the gallery image in lightbox ? =
260
-
261
- In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
262
-
263
  = How to define size of the gallery images thumbnails? =
264
 
265
  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
266
 
 
 
 
 
267
  = Do you have some limits for images amount in gallery? =
268
 
269
  No, we don't have any limits for amount of the images in gallery
@@ -272,6 +272,14 @@ No, we don't have any limits for amount of the images in gallery
272
 
273
  Yes, you can use generated direct link inside particular gallery settings
274
 
 
 
 
 
 
 
 
 
275
  = Where specify description of the gallery images? =
276
 
277
  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
@@ -284,14 +292,6 @@ Shadows of the thumbnails you can customize in gallery settings. With gallery se
284
 
285
  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.
286
 
287
- = How to change color of the gallery interface elements? =
288
-
289
- 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.
290
-
291
- = How to customize gallery layouts for different screen resolutions? =
292
-
293
- 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.
294
-
295
  = Is it possible to have different settings for hover and static interface elements? =
296
 
297
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
@@ -304,10 +304,6 @@ In gallery settings you can define horizontal and vertical paddings between gall
304
 
305
  In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
306
 
307
- = How to define custom link for some gallery images? =
308
-
309
- 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
310
-
311
  = Is it possible to use HTML in image description ? =
312
 
313
  Yes, you can use HTML tags inside gallery image description field
@@ -320,17 +316,13 @@ When you open gallery for edit you can find there images manager where you can c
320
 
321
  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
322
 
323
- = Which parameters I can change for the gallery thumbnails borders and shadows? =
324
-
325
- You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
326
-
327
- = How to change font color of the gallery image caption? =
328
 
329
- In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
330
 
331
- = Where to change settings of the image of the gallery? =
332
 
333
- Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
334
 
335
  = How to load more function work? =
336
 
@@ -340,6 +332,14 @@ In gallery admin section you can define amount of the images for the first load
340
 
341
  When you open gallery images manager you can define alt for every gallery image there
342
 
 
 
 
 
 
 
 
 
343
  = Is it possible to customize gallery image caption ? =
344
 
345
  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
@@ -372,10 +372,6 @@ When you open gallery images manager you'll find there image edit mode where you
372
 
373
  Yes, gallery have fade hover effect
374
 
375
- = How to change color of the gallery thumbnails border? =
376
-
377
- 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
378
-
379
  = How to crop uploaded gallery image? =
380
 
381
  When you open gallery images manager you'll find there image edit mode where you can crop source image
@@ -384,13 +380,13 @@ When you open gallery images manager you'll find there image edit mode where you
384
 
385
  In gallery settings you can find before/after text gallery field. This fields support HTML tags.
386
 
387
- = How to change width of the gallery thumbnails border? =
388
 
389
- 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.
390
 
391
- = How many thumbnails hover effects gallery has? =
392
 
393
- Gallery have 15 hover animation effects, which could be combined with additional custom options
394
 
395
  = How to customize gallery hover effect shutter layout? =
396
 
@@ -400,6 +396,10 @@ In gallery hover settings you can enable template where you can fully customize
400
 
401
  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
402
 
 
 
 
 
403
  = How many menu buttons styles do you have in gallery menu ? =
404
 
405
  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
@@ -412,6 +412,10 @@ Yes, it's possible to change transparency in gallery settings
412
 
413
  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
414
 
 
 
 
 
415
  = Do you have Polaroid style in your gallery? =
416
 
417
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
@@ -420,10 +424,6 @@ In our gallery implemented options which make you able to make gallery thumbnail
420
 
421
  In gallery hover settings we implemented full set of configuration settings of the buttons. You can change icon, style size, colors for static and hovered buttons. You can select icon with build in wizard
422
 
423
- = How to make gallery with no space between thumbnails of the gallery? =
424
-
425
- 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
426
-
427
  = How I can make gallery only with one size pictures but I would like to arrange gallery with pictures of the different size - one big, several smaller? =
428
 
429
  In our gallery you can define different amount of the columns for the images thumbnails and every gallery image could have different width which measuring by columns of the images thumbnails. For example you can define 2 column size for the image 1 and 3 columns size for image 5 but the rest of the gallery images could stay with default one column value in images settings.
@@ -476,14 +476,6 @@ Yes, you can change background color of the gallery lightbox. When you open gall
476
 
477
  Actually settings of all this main elements of the gallery post is inherited from the the general Wordpress posts settings. So you can turn in off the same way as it's manage in general posts, not only gallery posts.
478
 
479
- = How to change amount of the columns in gallery layout? =
480
-
481
- In gallery general settings you can find gallery thumbnails columns options which could depend of the device screen size. You can define different gallery columns amount for different resolution.
482
-
483
- = Is it possible to insert video as gallery link? =
484
-
485
- 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 video link field in gallery image options, where you can define some custom link to the online video.
486
-
487
  = Which permissions do I need to have on server for proper gallery installation? =
488
 
489
  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.
@@ -492,6 +484,14 @@ Our gallery do not require any special permissions for installation of the galle
492
 
493
  In our gallery we implemented few additional options which help you to add some text with HTML before/after gallery on your page. IN gallery settings you can find pre/post text fields where you can define some description text for the gallery. This gallery fields support HTML, so you can customize this text with HTML tags or css styles.
494
 
 
 
 
 
 
 
 
 
495
  = Is it possible to change color of the hovered image in gallery? =
496
 
497
  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.
@@ -574,6 +574,10 @@ If any problem occurs, please contact us.
574
 
575
  == Changelog ==
576
 
 
 
 
 
577
  = 1.5.9 =
578
  * New options for post generator
579
  * Text filed for post generator wizard
@@ -809,6 +813,9 @@ If any problem occurs, please contact us.
809
 
810
  == Upgrade Notice ==
811
 
 
 
 
812
  = 1.5.9 =
813
  Text filed for post generator wizard, ability to customize text of new post with gallery tag inside it
814
 
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.5.10
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
220
 
221
  Yes, you can insert gallery into post with shortcode tag
222
 
 
 
 
 
 
 
 
 
223
  = How to change quality of the gallery thumbnails? =
224
 
225
  Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
228
 
229
  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
230
 
231
+ = How I can create custom (grid) layout of the thumbnails? =
232
+
233
+ In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
234
+
235
+ = How to change font size of the gallery image caption? =
236
+
237
+ In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
238
+
239
  = How to customize border of the gallery thumbnails? =
240
 
241
  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
256
 
257
  No, we don't have any limits for image size in our gallery.
258
 
 
 
 
 
259
  = How to define size of the gallery images thumbnails? =
260
 
261
  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
262
 
263
+ = How to hide titles of the gallery image in lightbox ? =
264
+
265
+ In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
266
+
267
  = Do you have some limits for images amount in gallery? =
268
 
269
  No, we don't have any limits for amount of the images in gallery
272
 
273
  Yes, you can use generated direct link inside particular gallery settings
274
 
275
+ = How to change color of the gallery interface elements? =
276
+
277
+ 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.
278
+
279
+ = How to customize gallery layouts for different screen resolutions? =
280
+
281
+ 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.
282
+
283
  = Where specify description of the gallery images? =
284
 
285
  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
292
 
293
  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.
294
 
 
 
 
 
 
 
 
 
295
  = Is it possible to have different settings for hover and static interface elements? =
296
 
297
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
304
 
305
  In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
306
 
 
 
 
 
307
  = Is it possible to use HTML in image description ? =
308
 
309
  Yes, you can use HTML tags inside gallery image description field
316
 
317
  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
318
 
319
+ = How to define custom link for some gallery images? =
 
 
 
 
320
 
321
+ 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
322
 
323
+ = Which parameters I can change for the gallery thumbnails borders and shadows? =
324
 
325
+ You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
326
 
327
  = How to load more function work? =
328
 
332
 
333
  When you open gallery images manager you can define alt for every gallery image there
334
 
335
+ = How to change font color of the gallery image caption? =
336
+
337
+ In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
338
+
339
+ = Where to change settings of the image of the gallery? =
340
+
341
+ Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
342
+
343
  = Is it possible to customize gallery image caption ? =
344
 
345
  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
372
 
373
  Yes, gallery have fade hover effect
374
 
 
 
 
 
375
  = How to crop uploaded gallery image? =
376
 
377
  When you open gallery images manager you'll find there image edit mode where you can crop source image
380
 
381
  In gallery settings you can find before/after text gallery field. This fields support HTML tags.
382
 
383
+ = How to change color of the gallery thumbnails border? =
384
 
385
+ 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
386
 
387
+ = How to change width of the gallery thumbnails border? =
388
 
389
+ 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.
390
 
391
  = How to customize gallery hover effect shutter layout? =
392
 
396
 
397
  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
398
 
399
+ = How many thumbnails hover effects gallery has? =
400
+
401
+ Gallery have 15 hover animation effects, which could be combined with additional custom options
402
+
403
  = How many menu buttons styles do you have in gallery menu ? =
404
 
405
  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
412
 
413
  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
414
 
415
+ = How to make gallery with no space between thumbnails of the gallery? =
416
+
417
+ 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
418
+
419
  = Do you have Polaroid style in your gallery? =
420
 
421
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
424
 
425
  In gallery hover settings we implemented full set of configuration settings of the buttons. You can change icon, style size, colors for static and hovered buttons. You can select icon with build in wizard
426
 
 
 
 
 
427
  = How I can make gallery only with one size pictures but I would like to arrange gallery with pictures of the different size - one big, several smaller? =
428
 
429
  In our gallery you can define different amount of the columns for the images thumbnails and every gallery image could have different width which measuring by columns of the images thumbnails. For example you can define 2 column size for the image 1 and 3 columns size for image 5 but the rest of the gallery images could stay with default one column value in images settings.
476
 
477
  Actually settings of all this main elements of the gallery post is inherited from the the general Wordpress posts settings. So you can turn in off the same way as it's manage in general posts, not only gallery posts.
478
 
 
 
 
 
 
 
 
 
479
  = Which permissions do I need to have on server for proper gallery installation? =
480
 
481
  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.
484
 
485
  In our gallery we implemented few additional options which help you to add some text with HTML before/after gallery on your page. IN gallery settings you can find pre/post text fields where you can define some description text for the gallery. This gallery fields support HTML, so you can customize this text with HTML tags or css styles.
486
 
487
+ = How to change amount of the columns in gallery layout? =
488
+
489
+ In gallery general settings you can find gallery thumbnails columns options which could depend of the device screen size. You can define different gallery columns amount for different resolution.
490
+
491
+ = Is it possible to insert video as gallery link? =
492
+
493
+ 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 video link field in gallery image options, where you can define some custom link to the online video.
494
+
495
  = Is it possible to change color of the hovered image in gallery? =
496
 
497
  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.
574
 
575
  == Changelog ==
576
 
577
+ = 1.5.10 =
578
+ * New configuration option for post generator management
579
+ * New Show/Hide post text field in plugin settings
580
+
581
  = 1.5.9 =
582
  * New options for post generator
583
  * Text filed for post generator wizard
813
 
814
  == Upgrade Notice ==
815
 
816
+ = 1.5.10 =
817
+ New configuration option for post generator management, Show/Hide post text field in plugin settings
818
+
819
  = 1.5.9 =
820
  Text filed for post generator wizard, ability to customize text of new post with gallery tag inside it
821
 
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.5.9
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", '1.5.9');
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: 1.5.10
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", '1.5.10');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25