Gallery – Photo Gallery and Images Gallery - Version 2.0.15

Version Description

  • Security update, fixed ajax security
Download this release

Release Info

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

Code changes from version 2.0.14 to 2.0.15

includes/extensions/rbs_create_post_ajax.php CHANGED
@@ -1,4 +1,17 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) die;
3
 
4
  rbs_gallery_include('class.postcontroller.php', ROBO_GALLERY_EXTENSIONS_PATH);
@@ -31,8 +44,8 @@ if(!function_exists('rbs_ajax_create_article_form')){
31
  echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
32
  return ;
33
  } ;
34
-
35
- $post_info = get_post( (int) $_POST['galleryid'] );
36
 
37
  if( gettype($post_info)!='object' ) {
38
  echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong>'.__('Incorrect gallery ID','rbs_gallery').'</p>';
@@ -59,7 +72,7 @@ if(!function_exists('rbs_ajax_create_article_form')){
59
  <?php if( !get_option(ROBO_GALLERY_PREFIX.'postShowText', 0) ) { ?>
60
  <tr>
61
  <th scope="row"><label for="rbs_post_create_text"><?php _e('Text','rbs_gallery'); ?>:</label></th>
62
- <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>
63
  </tr>
64
  <?php } ?>
65
  </tbody>
@@ -147,11 +160,12 @@ if(!function_exists('rbs_ajax_create_article')){
147
  if(!function_exists('rbs_ajax_posts_list')){
148
  function rbs_ajax_posts_list(){
149
 
150
- if( !isset($_POST['galleryid']) || !(int)$_POST['galleryid'] ){
151
  echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
152
  return ;
153
  } ;
154
- $posts = get_post_meta( (int) $_POST['galleryid'], 'rbs_gallery_id' , true);
 
155
 
156
  if(!count($posts)){
157
  e_('No post','rbs_gallery');
@@ -205,11 +219,12 @@ if(!function_exists('rbs_ajax_posts_list')){
205
  if(!function_exists('rbs_ajax_reset_views')){
206
  function rbs_ajax_reset_views(){
207
 
208
- if( !isset($_POST['galleryid']) || !(int)$_POST['galleryid'] ){
209
  echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
210
  return ;
211
  } ;
212
- $galleryId = (int)$_POST['galleryid'];
 
213
  $count_key = 'gallery_views_count';
214
 
215
  delete_post_meta( $galleryId, $count_key);
1
  <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 2.0
5
+ * By Robosoft
6
+ *
7
+ * Contact: http://robosoft.co
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+ *
11
+ * Copyright (c) 2014-2016, Robosoft. All rights reserved.
12
+ * Available only in http://robosoft.co/robogallery
13
+ */
14
+
15
  if ( ! defined( 'WPINC' ) ) die;
16
 
17
  rbs_gallery_include('class.postcontroller.php', ROBO_GALLERY_EXTENSIONS_PATH);
44
  echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
45
  return ;
46
  } ;
47
+ $galleryid = (int) $_POST['galleryid'];
48
+ $post_info = get_post($galleryid );
49
 
50
  if( gettype($post_info)!='object' ) {
51
  echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong>'.__('Incorrect gallery ID','rbs_gallery').'</p>';
72
  <?php if( !get_option(ROBO_GALLERY_PREFIX.'postShowText', 0) ) { ?>
73
  <tr>
74
  <th scope="row"><label for="rbs_post_create_text"><?php _e('Text','rbs_gallery'); ?>:</label></th>
75
+ <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 $galleryid; ; ?>"]</textarea></td>
76
  </tr>
77
  <?php } ?>
78
  </tbody>
160
  if(!function_exists('rbs_ajax_posts_list')){
161
  function rbs_ajax_posts_list(){
162
 
163
+ if( !isset($_POST['galleryid']) || !((int)$_POST['galleryid']) ){
164
  echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
165
  return ;
166
  } ;
167
+ $galleryid = (int) $_POST['galleryid'];
168
+ $posts = get_post_meta( $galleryid, 'rbs_gallery_id' , true);
169
 
170
  if(!count($posts)){
171
  e_('No post','rbs_gallery');
219
  if(!function_exists('rbs_ajax_reset_views')){
220
  function rbs_ajax_reset_views(){
221
 
222
+ if( !isset($_POST['galleryid']) || ! ((int) $_POST['galleryid']) ){
223
  echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
224
  return ;
225
  } ;
226
+ $galleryId = (int) $_POST['galleryid'];
227
+
228
  $count_key = 'gallery_views_count';
229
 
230
  delete_post_meta( $galleryId, $count_key);
includes/rbs_gallery_ajax.php CHANGED
@@ -1,12 +1,34 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  if ( ! defined( 'WPINC' ) ) die;
3
 
4
- if(!function_exists('rbs_gallery_ajax_callback')){
5
  add_action( 'wp_ajax_rbs_gallery', 'rbs_gallery_ajax_callback' );
6
  function rbs_gallery_ajax_callback(){
7
- if(isset($_POST['function']) && $_POST['function']){
8
- $functionName = 'rbs_ajax_'.$_POST['function'];
9
- if( function_exists( $functionName ) ) $functionName();
 
 
 
 
 
 
 
 
10
  }
11
  wp_die();
12
  }
1
  <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 2.0
5
+ * By Robosoft
6
+ *
7
+ * Contact: http://robosoft.co
8
+ * Created: 2015
9
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
10
+ *
11
+ * Copyright (c) 2014-2016, Robosoft. All rights reserved.
12
+ * Available only in http://robosoft.co/robogallery
13
+ */
14
+
15
+
16
  if ( ! defined( 'WPINC' ) ) die;
17
 
18
+ if(!function_exists('rbs_gallery_ajax_callback') && is_admin() ){
19
  add_action( 'wp_ajax_rbs_gallery', 'rbs_gallery_ajax_callback' );
20
  function rbs_gallery_ajax_callback(){
21
+
22
+ if( !isset($_POST['function']) || !$_POST['function'] ) return ;
23
+ $functionName = $_POST['function'];
24
+ if ( ereg("[^a-z_]", $functionName) ) return ;
25
+ $functionName = 'rbs_ajax_'.$functionName;
26
+ switch ($functionName) {
27
+ case 'rbs_ajax_create_article_form': rbs_ajax_create_article_form(); break;
28
+ case 'rbs_ajax_create_article': rbs_ajax_create_article(); break;
29
+ case 'rbs_ajax_posts_list': rbs_ajax_posts_list(); break;
30
+ case 'rbs_ajax_reset_views': rbs_ajax_reset_views(); break;
31
+ default: return ; break;
32
  }
33
  wp_die();
34
  }
includes/rbs_gallery_config.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Robo Gallery
4
- * Version: 1.5
5
  * By Robosoft
6
  *
7
  * Contact: http://robosoft.co
1
  <?php
2
  /*
3
  * Robo Gallery
4
+ * Version: 2.0
5
  * By Robosoft
6
  *
7
  * Contact: http://robosoft.co
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.4
7
- Stable tag: 2.0.14
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -178,10 +178,6 @@ You don't need do any additional configurations or manual code changes. You can
178
 
179
  == Frequently Asked Questions ==
180
 
181
- = How to turn off social buttons in gallery lightbox? =
182
-
183
- When you open gallery settings you can find there gallery lightbox settings block, where you can turn off social buttons in gallery lightbox on the front end.
184
-
185
  = Is it possible to customize gallery image caption ? =
186
 
187
  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
@@ -202,30 +198,14 @@ When you open gallery images manager you'll find there image edit mode where you
202
 
203
  Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
204
 
205
- = Do you have Polaroid style in your gallery? =
206
-
207
- In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
208
-
209
  = How to change style of the gallery thumbnails border? =
210
 
211
  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
212
 
213
- = Is it possible to use HTML in image description ? =
214
-
215
- Yes, you can use HTML tags inside gallery image description field
216
-
217
- = 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? =
218
-
219
- 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.
220
-
221
  = Do you have some limits for images amount in gallery? =
222
 
223
  No, we don't have any limits for amount of the images in gallery
224
 
225
- = How to change quality of the gallery thumbnails? =
226
-
227
- Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
228
-
229
  = How to customize hover effect? =
230
 
231
  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
@@ -238,10 +218,6 @@ You can use any standard file type in our gallery: png, jpg, jpeg, gif
238
 
239
  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.
240
 
241
- = How to install Gallery plugin? =
242
-
243
- 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!
244
-
245
  = Where to change font color of the gallery lightbox text? =
246
 
247
  When you open gallery settings you can find there gallery lightbox settings block, where you can gallery lightbox text color using color selector.
@@ -254,10 +230,6 @@ When you open gallery settings inside you'll find images manager section. Images
254
 
255
  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 going to help you to build in some gallery images elements into hover
256
 
257
- = How to make gallery with no space between thumbnails of the gallery? =
258
-
259
- 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
260
-
261
  = Where it's possible to define vertical and horizontal paddings? =
262
 
263
  In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
@@ -270,10 +242,6 @@ Every gallery image have additional fields where you can define custom link, tit
270
 
271
  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.
272
 
273
- = How to change font style of the gallery image caption? =
274
-
275
- In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
276
-
277
  = How to enable lazy load in gallery options? =
278
 
279
  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
@@ -286,46 +254,18 @@ Every gallery image have additional fields where you can define custom link, tit
286
 
287
  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.
288
 
289
- = How to customize border of the gallery thumbnails? =
290
-
291
- 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
292
-
293
- = Do you have some limit for images size in gallery? =
294
-
295
- No, we don't have any limits for image size in our gallery.
296
-
297
  = How to hide titles of the gallery image in lightbox ? =
298
 
299
  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.
300
 
301
- = What can I do if some gallery interface elements in backend do not work properly? =
302
-
303
- 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.
304
-
305
- = How to insert text before/after gallery? =
306
-
307
- 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.
308
-
309
  = How I can create custom (grid) layout of the thumbnails? =
310
 
311
  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
312
 
313
- = How to load more function work? =
314
-
315
- 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
316
-
317
  = How to change color of the gallery thumbnails border? =
318
 
319
  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
320
 
321
- = How to change text below image in lightbox ? =
322
-
323
- 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.
324
-
325
- = Is it possible to create target blank links? =
326
-
327
- 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.
328
-
329
  = How to use multi-category functionality of the gallery? =
330
 
331
  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
@@ -342,10 +282,6 @@ You can select border color, background color and color of the icon, size of the
342
 
343
  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
344
 
345
- = How to rotate uploaded gallery image? =
346
-
347
- When you open gallery images manager you'll find there image edit mode where you can rotate source image
348
-
349
  = How to define custom link for some gallery images? =
350
 
351
  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
@@ -354,13 +290,13 @@ Every gallery image have additional fields where you can define custom link, tit
354
 
355
  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
356
 
357
- = How to change ordering of the gallery images? =
358
 
359
- When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
360
 
361
- = Is it possible create gallery in Wordpress post with Gallery? =
362
 
363
- Yes, you can insert gallery into post with shortcode tag
364
 
365
  = How to make gallery thumbnails with rounded corners? =
366
 
@@ -374,10 +310,6 @@ In gallery settings you can enable custom caption settings where you can customi
374
 
375
  Yes, you can use generated direct link inside particular gallery settings
376
 
377
- = Is it possible to change background color of the gallery lightbox? =
378
-
379
- Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block, where you can change color of the gallery lightbox background.
380
-
381
  = How to generate shortcode for Wordpress page, post or widget? =
382
 
383
  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
@@ -386,6 +318,10 @@ First of all you can copy shortcode inside gallery settings , in separate shortc
386
 
387
  You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
388
 
 
 
 
 
389
  = How to upload images to the gallery? =
390
 
391
  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.
@@ -394,30 +330,14 @@ When you create new gallery or open already existent gallery for edit on the rig
394
 
395
  In our gallery we have 2 buttons for every gallery thumbnail. Zoom button and link button.
396
 
397
- = How to change width of the gallery thumbnails border? =
398
-
399
- 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.
400
-
401
  = Is it possible to turn off border of the gallery thumbnails? =
402
 
403
  Yes, in gallery options you can turn on/off border option
404
 
405
- = How to change font color of the gallery image caption? =
406
-
407
- In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
408
-
409
- = How to change transparency of the gallery thumbnails border? =
410
-
411
- When you enable border in gallery settings you will see multiply options for customization of the border. When you open color selector you can also select some transparency value there
412
-
413
  = How to customize border of the gallery thumbnails? =
414
 
415
  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
416
 
417
- = Is it possible to generate post with gallery inside it ? =
418
-
419
- In gallery settings we create separate section where you can find create new post button. After click on this button you'll see wizard form where you can select all additional parameters for the gallery new post.
420
-
421
  = How to change font size of the gallery image description text? =
422
 
423
  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
@@ -426,22 +346,46 @@ In gallery settings, when enabled custom hover settings you can customize style
426
 
427
  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.
428
 
 
 
 
 
429
  = How to change font color of the gallery image description text? =
430
 
431
  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
432
 
 
 
 
 
 
 
 
 
 
 
 
 
433
  = How to add text before and after gallery? =
434
 
435
  In gallery settings you can find before/after text gallery field. This fields support HTML tags.
436
 
437
- = How to define custom hover effect for some gallery thumbnail? =
438
 
439
- 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.
440
 
441
  = Is it possible to change transparency of the hover shutter? =
442
 
443
  Yes, it's possible to change transparency in gallery settings
444
 
 
 
 
 
 
 
 
 
445
  = How to insert gallery into Wordpress page or post? =
446
 
447
  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
@@ -454,14 +398,14 @@ Our gallery do not require any special permissions for installation of the galle
454
 
455
  For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
456
 
457
- = How to change icon on gallery thumbnail button? =
458
-
459
- When you open gallery settings you can see there hover options section where we implemented settings for every hover button. Here you can select icons for buttons and style for this icon
460
-
461
  = How to crop uploaded gallery image? =
462
 
463
  When you open gallery images manager you'll find there image edit mode where you can crop source image
464
 
 
 
 
 
465
  = How to change amount of images loading on gallery page? =
466
 
467
  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
@@ -470,14 +414,26 @@ In gallery settings we have few options which makes you able to select amount of
470
 
471
  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.
472
 
473
- = How to define size of the gallery images thumbnails? =
474
 
475
- 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
 
 
 
 
 
 
 
 
476
 
477
  = Do you have some conflict in gallery back end? =
478
 
479
  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.
480
 
 
 
 
 
481
  = How to make shadow for the gallery thumbnails? =
482
 
483
  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
@@ -486,14 +442,34 @@ Shadows of the thumbnails you can customize in gallery settings. With gallery se
486
 
487
  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.
488
 
 
 
 
 
 
 
 
 
 
 
 
 
489
  = Do you have fade effect for the thumbnails hover? =
490
 
491
  Yes, gallery have fade hover effect
492
 
 
 
 
 
493
  = What can I do if some gallery interface elements in backend do not work properly? =
494
 
495
  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.
496
 
 
 
 
 
497
  = How many thumbnails hover effects gallery has? =
498
 
499
  Gallery have 15 hover animation effects, which could be combined with additional custom options
@@ -502,6 +478,10 @@ Gallery have 15 hover animation effects, which could be combined with additional
502
 
503
  In build library of the icons in gallery you can find 533 icons
504
 
 
 
 
 
505
  = Is it possible to have different settings for hover and static interface elements? =
506
 
507
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
@@ -510,6 +490,26 @@ Yes, you can have different styles of the borders and shadows for static and hov
510
 
511
  Yes, you can change gallery lightbox background transparency in gallery settings. Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block. When you open color selector for the gallery lightbox background you'll see there additional slider option for transparency value.
512
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
513
  == Screenshots ==
514
 
515
  1. Gallery Demo 1
@@ -584,6 +584,9 @@ If any problem occurs, please contact us.
584
 
585
  == Changelog ==
586
 
 
 
 
587
  = 2.0.14 =
588
  * Updated configuration and code optimization
589
 
@@ -1078,6 +1081,9 @@ If any problem occurs, please contact us.
1078
 
1079
  == Upgrade Notice ==
1080
 
 
 
 
1081
  = 2.0.14 =
1082
  Updated configuration and code optimization
1083
 
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.4
7
+ Stable tag: 2.0.15
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
178
 
179
  == Frequently Asked Questions ==
180
 
 
 
 
 
181
  = Is it possible to customize gallery image caption ? =
182
 
183
  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
198
 
199
  Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
200
 
 
 
 
 
201
  = How to change style of the gallery thumbnails border? =
202
 
203
  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
204
 
 
 
 
 
 
 
 
 
205
  = Do you have some limits for images amount in gallery? =
206
 
207
  No, we don't have any limits for amount of the images in gallery
208
 
 
 
 
 
209
  = How to customize hover effect? =
210
 
211
  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
218
 
219
  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.
220
 
 
 
 
 
221
  = Where to change font color of the gallery lightbox text? =
222
 
223
  When you open gallery settings you can find there gallery lightbox settings block, where you can gallery lightbox text color using color selector.
230
 
231
  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 going to help you to build in some gallery images elements into hover
232
 
 
 
 
 
233
  = Where it's possible to define vertical and horizontal paddings? =
234
 
235
  In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
242
 
243
  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.
244
 
 
 
 
 
245
  = How to enable lazy load in gallery options? =
246
 
247
  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
254
 
255
  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.
256
 
 
 
 
 
 
 
 
 
257
  = How to hide titles of the gallery image in lightbox ? =
258
 
259
  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.
260
 
 
 
 
 
 
 
 
 
261
  = How I can create custom (grid) layout of the thumbnails? =
262
 
263
  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
264
 
 
 
 
 
265
  = How to change color of the gallery thumbnails border? =
266
 
267
  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
268
 
 
 
 
 
 
 
 
 
269
  = How to use multi-category functionality of the gallery? =
270
 
271
  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
282
 
283
  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
284
 
 
 
 
 
285
  = How to define custom link for some gallery images? =
286
 
287
  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
290
 
291
  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
292
 
293
+ = How to load more function work? =
294
 
295
+ 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
296
 
297
+ = How to change ordering of the gallery images? =
298
 
299
+ When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
300
 
301
  = How to make gallery thumbnails with rounded corners? =
302
 
310
 
311
  Yes, you can use generated direct link inside particular gallery settings
312
 
 
 
 
 
313
  = How to generate shortcode for Wordpress page, post or widget? =
314
 
315
  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
318
 
319
  You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
320
 
321
+ = How to insert text before/after gallery? =
322
+
323
+ 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.
324
+
325
  = How to upload images to the gallery? =
326
 
327
  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.
330
 
331
  In our gallery we have 2 buttons for every gallery thumbnail. Zoom button and link button.
332
 
 
 
 
 
333
  = Is it possible to turn off border of the gallery thumbnails? =
334
 
335
  Yes, in gallery options you can turn on/off border option
336
 
 
 
 
 
 
 
 
 
337
  = How to customize border of the gallery thumbnails? =
338
 
339
  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
340
 
 
 
 
 
341
  = How to change font size of the gallery image description text? =
342
 
343
  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
346
 
347
  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.
348
 
349
+ = How to rotate uploaded gallery image? =
350
+
351
+ When you open gallery images manager you'll find there image edit mode where you can rotate source image
352
+
353
  = How to change font color of the gallery image description text? =
354
 
355
  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
356
 
357
+ = Is it possible create gallery in Wordpress post with Gallery? =
358
+
359
+ Yes, you can insert gallery into post with shortcode tag
360
+
361
+ = Do you have some limit for images size in gallery? =
362
+
363
+ No, we don't have any limits for image size in our gallery.
364
+
365
+ = How to change text below image in lightbox ? =
366
+
367
+ 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.
368
+
369
  = How to add text before and after gallery? =
370
 
371
  In gallery settings you can find before/after text gallery field. This fields support HTML tags.
372
 
373
+ = How to customize border of the gallery thumbnails? =
374
 
375
+ 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
376
 
377
  = Is it possible to change transparency of the hover shutter? =
378
 
379
  Yes, it's possible to change transparency in gallery settings
380
 
381
+ = Is it possible to change background color of the gallery lightbox? =
382
+
383
+ Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block, where you can change color of the gallery lightbox background.
384
+
385
+ = 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? =
386
+
387
+ 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.
388
+
389
  = How to insert gallery into Wordpress page or post? =
390
 
391
  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
398
 
399
  For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
400
 
 
 
 
 
401
  = How to crop uploaded gallery image? =
402
 
403
  When you open gallery images manager you'll find there image edit mode where you can crop source image
404
 
405
+ = How to change font color of the gallery image caption? =
406
+
407
+ In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
408
+
409
  = How to change amount of images loading on gallery page? =
410
 
411
  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
414
 
415
  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.
416
 
417
+ = Is it possible to generate post with gallery inside it ? =
418
 
419
+ In gallery settings we create separate section where you can find create new post button. After click on this button you'll see wizard form where you can select all additional parameters for the gallery new post.
420
+
421
+ = Is it possible to create target blank links? =
422
+
423
+ 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.
424
+
425
+ = How to change width of the gallery thumbnails border? =
426
+
427
+ 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.
428
 
429
  = Do you have some conflict in gallery back end? =
430
 
431
  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.
432
 
433
+ = How to change transparency of the gallery thumbnails border? =
434
+
435
+ When you enable border in gallery settings you will see multiply options for customization of the border. When you open color selector you can also select some transparency value there
436
+
437
  = How to make shadow for the gallery thumbnails? =
438
 
439
  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
442
 
443
  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.
444
 
445
+ = How to define custom hover effect for some gallery thumbnail? =
446
+
447
+ 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.
448
+
449
+ = How to change font style of the gallery image caption? =
450
+
451
+ In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
452
+
453
+ = Is it possible to use HTML in image description ? =
454
+
455
+ Yes, you can use HTML tags inside gallery image description field
456
+
457
  = Do you have fade effect for the thumbnails hover? =
458
 
459
  Yes, gallery have fade hover effect
460
 
461
+ = How to install Gallery plugin? =
462
+
463
+ 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!
464
+
465
  = What can I do if some gallery interface elements in backend do not work properly? =
466
 
467
  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.
468
 
469
+ = Do you have Polaroid style in your gallery? =
470
+
471
+ In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
472
+
473
  = How many thumbnails hover effects gallery has? =
474
 
475
  Gallery have 15 hover animation effects, which could be combined with additional custom options
478
 
479
  In build library of the icons in gallery you can find 533 icons
480
 
481
+ = How to change icon on gallery thumbnail button? =
482
+
483
+ When you open gallery settings you can see there hover options section where we implemented settings for every hover button. Here you can select icons for buttons and style for this icon
484
+
485
  = Is it possible to have different settings for hover and static interface elements? =
486
 
487
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
490
 
491
  Yes, you can change gallery lightbox background transparency in gallery settings. Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block. When you open color selector for the gallery lightbox background you'll see there additional slider option for transparency value.
492
 
493
+ = How to make gallery with no space between thumbnails of the gallery? =
494
+
495
+ 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
496
+
497
+ = How to turn off social buttons in gallery lightbox? =
498
+
499
+ When you open gallery settings you can find there gallery lightbox settings block, where you can turn off social buttons in gallery lightbox on the front end.
500
+
501
+ = How to define size of the gallery images thumbnails? =
502
+
503
+ 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
504
+
505
+ = How to change quality of the gallery thumbnails? =
506
+
507
+ Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
508
+
509
+ = What can I do if some gallery interface elements in backend do not work properly? =
510
+
511
+ 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.
512
+
513
  == Screenshots ==
514
 
515
  1. Gallery Demo 1
584
 
585
  == Changelog ==
586
 
587
+ = 2.0.15 =
588
+ * Security update, fixed ajax security
589
+
590
  = 2.0.14 =
591
  * Updated configuration and code optimization
592
 
1081
 
1082
  == Upgrade Notice ==
1083
 
1084
+ = 2.0.15 =
1085
+ Security update, fixed ajax security
1086
+
1087
  = 2.0.14 =
1088
  Updated configuration and code optimization
1089
 
robogallery.php CHANGED
@@ -8,7 +8,7 @@
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
- * Version: 2.0.14
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
@@ -19,7 +19,7 @@
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  define("ROBO_GALLERY", 1);
22
- define("ROBO_GALLERY_VERSION", '2.0.14');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25
 
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
+ * Version: 2.0.15
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  define("ROBO_GALLERY", 1);
22
+ define("ROBO_GALLERY_VERSION", '2.0.15');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25