Gallery – Photo Gallery and Images Gallery - Version 1.5.1

Version Description

  • New option for post generator
  • Possible define custom title for new gallery post
Download this release

Release Info

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

Code changes from version 1.5.0 to 1.5.1

includes/extensions/rbs_create_post.php CHANGED
@@ -13,7 +13,8 @@ if(!function_exists('rbs_create_article_button')){
13
  .'>';
14
  ?>
15
  <div id="rbs_actionWindowContent">
16
- <h3> <span class="dashicons dashicons-update"></span> <?php echo __('Loading . . . .','rbs_gallery'); ?></h3>
 
17
  </div>
18
  <?php
19
  echo '</div>';
13
  .'>';
14
  ?>
15
  <div id="rbs_actionWindowContent">
16
+ <h3> <span class="dashicons dashicons-update"></span>
17
+ <?php echo __('Loading . . . .','rbs_gallery'); ?></h3>
18
  </div>
19
  <?php
20
  echo '</div>';
includes/extensions/rbs_create_post_ajax.php CHANGED
@@ -3,6 +3,7 @@ if ( ! defined( 'WPINC' ) ) die;
3
 
4
  rbs_gallery_include('class.postcontroller.php', ROBO_GALLERY_EXTENSIONS_PATH);
5
 
 
6
  if(!function_exists('rbs_ajax_create_article')){
7
  function rbs_ajax_create_article(){
8
  if(
@@ -20,7 +21,11 @@ if(!function_exists('rbs_ajax_create_article')){
20
  }
21
 
22
  $Poster = new PostController;
23
- $Poster->set_title( $post_info->post_title );
 
 
 
 
24
  $Poster->add_category( array($categoryid) );
25
  $Poster->set_type( "post" );
26
  $Poster->set_content( '[robo-gallery id="'.$galleryid.'"]' );
@@ -48,35 +53,55 @@ if(!function_exists('rbs_ajax_create_article')){
48
 
49
  if(!function_exists('rbs_ajax_create_article_form')){
50
  function rbs_ajax_create_article_form(){
51
- echo '<div class="form-group">';
52
- $args = array(
53
- 'show_option_all' => '',
54
- 'show_option_none' => '',
55
- 'option_none_value' => '-1',
56
- 'orderby' => 'ID',
57
- 'order' => 'ASC',
58
- 'show_count' => 0,
59
- 'hide_empty' => 0,
60
- 'child_of' => 0,
61
- 'exclude' => '',
62
- 'echo' => 1,
63
- 'selected' => 0,
64
- 'hierarchical' => 1,
65
- 'name' => 'cat',
66
- 'id' => 'rbs_post_create_category',
67
- 'class' => 'form-control',
68
- 'depth' => 0,
69
- 'tab_index' => 0,
70
- 'taxonomy' => 'category',
71
- 'hide_if_empty' => false,
72
- 'value_field' => 'term_id',
73
- );
74
-
75
- echo '<label for="rbs_post_create_category">'.__('Select category','rbs_gallery').' </label> ';
76
-
77
- wp_dropdown_categories( $args );
78
-
79
- echo '</div>';
80
- echo '<p>'.__('Title of the article will be the same as gallery title. Target category you can select below. Short tag of the gallery will be insert into created article.','rbs_gallery').'</p>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  }
82
  }
3
 
4
  rbs_gallery_include('class.postcontroller.php', ROBO_GALLERY_EXTENSIONS_PATH);
5
 
6
+
7
  if(!function_exists('rbs_ajax_create_article')){
8
  function rbs_ajax_create_article(){
9
  if(
21
  }
22
 
23
  $Poster = new PostController;
24
+
25
+ $title = $post_info->post_title;
26
+ if(isset( $_POST['articletitle'] ) && $_POST['articletitle'] ) $title = wp_kses_data($_POST['articletitle']);
27
+
28
+ $Poster->set_title( $title );
29
  $Poster->add_category( array($categoryid) );
30
  $Poster->set_type( "post" );
31
  $Poster->set_content( '[robo-gallery id="'.$galleryid.'"]' );
53
 
54
  if(!function_exists('rbs_ajax_create_article_form')){
55
  function rbs_ajax_create_article_form(){
56
+ $args = array(
57
+ 'show_option_all' => '',
58
+ 'show_option_none' => '',
59
+ 'option_none_value' => '-1',
60
+ 'orderby' => 'ID',
61
+ 'order' => 'ASC',
62
+ 'show_count' => 0,
63
+ 'hide_empty' => 0,
64
+ 'child_of' => 0,
65
+ 'exclude' => '',
66
+ 'echo' => 1,
67
+ 'selected' => 0,
68
+ 'hierarchical' => 1,
69
+ 'name' => 'cat',
70
+ 'id' => 'rbs_post_create_category',
71
+ 'class' => 'form-control',
72
+ 'depth' => 0,
73
+ 'tab_index' => 0,
74
+ 'taxonomy' => 'category',
75
+ 'hide_if_empty' => false,
76
+ 'value_field' => 'term_id',
77
+ );
78
+ if( !isset($_POST['galleryid']) || !(int)$_POST['galleryid'] ){
79
+ echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong><br><p>'._e('Empty gallery ID','rbs_gallery').'</p>';
80
+ return ;
81
+ } ;
82
+
83
+ $post_info = get_post( (int) $_POST['galleryid'] );
84
+
85
+ if( gettype($post_info)!='object' ) {
86
+ echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong><br><p>'._e('Incorrect gallery ID','rbs_gallery').'</p>';
87
+ return ;
88
+ }
89
+
90
+ ?>
91
+ <table class="form-table">
92
+ <tbody>
93
+ <tr>
94
+ <th scope="row"><label for="rbs_post_create_title"><?php _e('Select category','rbs_gallery'); ?></label></th>
95
+ <td><?php wp_dropdown_categories( $args ); ?></td>
96
+ </tr>
97
+ <tr>
98
+ <th scope="row"><label for="rbs_post_create_title">Post Title</label></th>
99
+ <td><input name="rbs_post_create_title" id="rbs_post_create_title" value="<?php echo $post_info->post_title ;?>" class="regular-text" type="text"></td>
100
+ </tr>
101
+ </tbody>
102
+ </table>
103
+ <?php
104
+
105
+ echo '<p>'.__('Short tag of the gallery will be insert into created article.','rbs_gallery').'</p>';
106
  }
107
  }
js/admin/extensions/create_post.js CHANGED
@@ -31,8 +31,8 @@
31
  'title': roboGalleryActionDialog.data('title'),
32
  'modal' : true,
33
  'autoOpen' : false,
34
- 'width': '450', // overcomes width:'auto' and maxWidth bug
35
- 'maxWidth': 450,
36
  'height': 'auto',
37
  'fluid': true,
38
  'resizable': false,
@@ -80,14 +80,17 @@
80
  evnt.preventDefault();
81
 
82
  var categoryId = $('#rbs_post_create_category').find(":selected").val();
 
83
 
84
  rbs_insert_post_content.html(progressHtml);
85
 
 
86
  var data = {
87
- 'action': 'rbs_gallery',
88
- 'function': 'create_article',
89
- 'galleryid': roboGalleryActionDialogId,
90
- 'categoryid': categoryId,
 
91
  };
92
 
93
  rbs_insert_post_button.hide();
31
  'title': roboGalleryActionDialog.data('title'),
32
  'modal' : true,
33
  'autoOpen' : false,
34
+ 'width': '550', // overcomes width:'auto' and maxWidth bug
35
+ 'maxWidth': 550,
36
  'height': 'auto',
37
  'fluid': true,
38
  'resizable': false,
80
  evnt.preventDefault();
81
 
82
  var categoryId = $('#rbs_post_create_category').find(":selected").val();
83
+ var title = $('#rbs_post_create_title').val();
84
 
85
  rbs_insert_post_content.html(progressHtml);
86
 
87
+
88
  var data = {
89
+ 'action': 'rbs_gallery',
90
+ 'function': 'create_article',
91
+ 'galleryid': roboGalleryActionDialogId,
92
+ 'categoryid': categoryId,
93
+ 'articletitle': title,
94
  };
95
 
96
  rbs_insert_post_button.hide();
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.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -184,10 +184,6 @@ Just install it using regular Wordpress plugins installing mechanism. If you ha
184
 
185
  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.
186
 
187
- = How to define video for some gallery image? =
188
-
189
- 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
190
-
191
  = How to upload images to the gallery? =
192
 
193
  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.
@@ -196,6 +192,10 @@ When you create new gallery or open already existent gallery for edit on the rig
196
 
197
  Yes, you can insert gallery into post with shortcode tag
198
 
 
 
 
 
199
  = What can I do if some gallery interface elements in backend do not work properly? =
200
 
201
  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.
@@ -204,14 +204,14 @@ If you have some conflict in gallery back end you can sort it with new compatibi
204
 
205
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
206
 
207
- = How to customize hover effect? =
208
-
209
- 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
210
-
211
  = How to generate shortcode for Wordpress page, post or widget? =
212
 
213
  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
214
 
 
 
 
 
215
  = How to change quality of the gallery thumbnails? =
216
 
217
  Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
@@ -224,10 +224,6 @@ When you create gallery in plugin galleries manager you can go to the post or pa
224
 
225
  In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
226
 
227
- = How to change text below image in lightbox ? =
228
-
229
- 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.
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
@@ -240,6 +236,10 @@ In gallery settings you can enable custom caption settings where you can customi
240
 
241
  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.
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
@@ -248,10 +248,6 @@ Yes, you can use generated direct link inside particular gallery settings
248
 
249
  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
250
 
251
- = How to make shadow for the gallery thumbnails? =
252
-
253
- 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
254
-
255
  = Do you have some limits for images amount in gallery? =
256
 
257
  No, we don't have any limits for amount of the images in gallery
@@ -260,6 +256,10 @@ No, we don't have any limits for amount of the images in gallery
260
 
261
  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
262
 
 
 
 
 
263
  = How to enable lazy load in gallery options? =
264
 
265
  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
@@ -272,10 +272,6 @@ In gallery settings you can find general settings section where you can turn on/
272
 
273
  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.
274
 
275
- = How to define size of the gallery images thumbnails? =
276
-
277
- 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
278
-
279
  = Do you have some limit for images size in gallery? =
280
 
281
  No, we don't have any limits for image size in our gallery.
@@ -284,6 +280,10 @@ No, we don't have any limits for image size in our gallery.
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 spacing between thumbnails? =
288
 
289
  In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
@@ -300,10 +300,6 @@ Color of every gallery front end interface element could be changed changed in a
300
 
301
  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.
302
 
303
- = Which parameters I can change for the gallery thumbnails borders and shadows? =
304
-
305
- You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
306
-
307
  = How to change font color of the gallery image caption? =
308
 
309
  In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
@@ -312,6 +308,10 @@ In gallery settings you can enable custom caption settings where you can customi
312
 
313
  In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
314
 
 
 
 
 
315
  = Is it possible to use HTML in image description ? =
316
 
317
  Yes, you can use HTML tags inside gallery image description field
@@ -324,10 +324,6 @@ Every gallery image have additional fields where you can define custom link, tit
324
 
325
  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
326
 
327
- = Is it possible to customize gallery image caption ? =
328
-
329
- 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
330
-
331
  = How to change ordering of the gallery images? =
332
 
333
  When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
@@ -336,6 +332,10 @@ When you open gallery for edit you can find there images manager where you can c
336
 
337
  Yes, in gallery options you can turn on/off border option
338
 
 
 
 
 
339
  = How to load more function work? =
340
 
341
  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
@@ -344,10 +344,6 @@ In gallery admin section you can define amount of the images for the first load
344
 
345
  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
346
 
347
- = How to flip uploaded gallery image? =
348
-
349
- When you open gallery images manager you'll find there image edit mode where you can flip source image
350
-
351
  = How to change font style of the gallery image caption? =
352
 
353
  In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
@@ -356,6 +352,10 @@ In gallery settings you can enable custom caption settings where you can customi
356
 
357
  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.
358
 
 
 
 
 
359
  = How to define custom ALT for gallery image? =
360
 
361
  When you open gallery images manager you can define alt for every gallery image there
@@ -408,10 +408,6 @@ Gallery menu have multiply configuration options. Some of the options changing c
408
 
409
  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.
410
 
411
- = Do you have Polaroid style in your gallery? =
412
-
413
- In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
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
@@ -420,6 +416,10 @@ If you wish to make section with gallery without spacing between thumbnails you
420
 
421
  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
422
 
 
 
 
 
423
  = Is it possible to customize load more button caption? =
424
 
425
  Yes, all labels of the front end interface of the gallery is customizable. Label of the load more button could be edit in admin section
@@ -492,6 +492,10 @@ Our gallery do not require any special permissions for installation of the galle
492
 
493
  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.
494
 
 
 
 
 
495
  == Screenshots ==
496
 
497
  1. Gallery Demo 1
@@ -566,6 +570,10 @@ If any problem occurs, please contact us.
566
 
567
  == Changelog ==
568
 
 
 
 
 
569
  = 1.5.0 =
570
  * New gallery admin tools implemented
571
  * New post with gallery generator implemented
@@ -763,6 +771,9 @@ If any problem occurs, please contact us.
763
 
764
  == Upgrade Notice ==
765
 
 
 
 
766
  = 1.5.0 =
767
  New wizard for auto post generation with shortcode inside it, new gallery admin tools implemented
768
 
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.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
184
 
185
  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.
186
 
 
 
 
 
187
  = How to upload images to the gallery? =
188
 
189
  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.
192
 
193
  Yes, you can insert gallery into post with shortcode tag
194
 
195
+ = How to define video for some gallery image? =
196
+
197
+ 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
198
+
199
  = What can I do if some gallery interface elements in backend do not work properly? =
200
 
201
  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.
204
 
205
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
206
 
 
 
 
 
207
  = How to generate shortcode for Wordpress page, post or widget? =
208
 
209
  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
210
 
211
+ = How to customize hover effect? =
212
+
213
+ 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
214
+
215
  = How to change quality of the gallery thumbnails? =
216
 
217
  Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
224
 
225
  In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
226
 
 
 
 
 
227
  = How I can create custom (grid) layout of the thumbnails? =
228
 
229
  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
236
 
237
  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.
238
 
239
+ = How to change text below image in lightbox ? =
240
+
241
+ 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.
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
248
 
249
  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
250
 
 
 
 
 
251
  = Do you have some limits for images amount in gallery? =
252
 
253
  No, we don't have any limits for amount of the images in gallery
256
 
257
  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
258
 
259
+ = How to make shadow for the gallery thumbnails? =
260
+
261
+ 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
262
+
263
  = How to enable lazy load in gallery options? =
264
 
265
  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
272
 
273
  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.
274
 
 
 
 
 
275
  = Do you have some limit for images size in gallery? =
276
 
277
  No, we don't have any limits for image size in our gallery.
280
 
281
  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.
282
 
283
+ = How to define size of the gallery images thumbnails? =
284
+
285
+ 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
286
+
287
  = How to change spacing between thumbnails? =
288
 
289
  In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
300
 
301
  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.
302
 
 
 
 
 
303
  = How to change font color of the gallery image caption? =
304
 
305
  In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
308
 
309
  In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
310
 
311
+ = Which parameters I can change for the gallery thumbnails borders and shadows? =
312
+
313
+ You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
314
+
315
  = Is it possible to use HTML in image description ? =
316
 
317
  Yes, you can use HTML tags inside gallery image description field
324
 
325
  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
326
 
 
 
 
 
327
  = How to change ordering of the gallery images? =
328
 
329
  When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
332
 
333
  Yes, in gallery options you can turn on/off border option
334
 
335
+ = Is it possible to customize gallery image caption ? =
336
+
337
+ 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
338
+
339
  = How to load more function work? =
340
 
341
  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
344
 
345
  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
346
 
 
 
 
 
347
  = How to change font style of the gallery image caption? =
348
 
349
  In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
352
 
353
  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.
354
 
355
+ = How to flip uploaded gallery image? =
356
+
357
+ When you open gallery images manager you'll find there image edit mode where you can flip source image
358
+
359
  = How to define custom ALT for gallery image? =
360
 
361
  When you open gallery images manager you can define alt for every gallery image there
408
 
409
  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.
410
 
 
 
 
 
411
  = How to make gallery with no space between thumbnails of the gallery? =
412
 
413
  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
416
 
417
  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
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
422
+
423
  = Is it possible to customize load more button caption? =
424
 
425
  Yes, all labels of the front end interface of the gallery is customizable. Label of the load more button could be edit in admin section
492
 
493
  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.
494
 
495
+ = How to insert text before/after gallery? =
496
+
497
+ 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.
498
+
499
  == Screenshots ==
500
 
501
  1. Gallery Demo 1
570
 
571
  == Changelog ==
572
 
573
+ = 1.5.1 =
574
+ * New option for post generator
575
+ * Possible define custom title for new gallery post
576
+
577
  = 1.5.0 =
578
  * New gallery admin tools implemented
579
  * New post with gallery generator implemented
771
 
772
  == Upgrade Notice ==
773
 
774
+ = 1.5.1 =
775
+ New option for post generator, possible define custom title for new gallery post
776
+
777
  = 1.5.0 =
778
  New wizard for auto post generation with shortcode inside it, new gallery admin tools implemented
779
 
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.0
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.0');
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.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", '1.5.1');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25