Gallery – Photo Gallery and Images Gallery - Version 1.4.3

Version Description

  • Added new padding gallery options
  • Added left gallery padding value
  • Added top gallery padding value
  • Added right gallery padding value
  • Added bottom gallery padding value
Download this release

Release Info

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

Code changes from version 1.4.2 to 1.4.3

cmb2/fields/padding/index.html ADDED
File without changes
cmb2/fields/padding/rbs-padding.php ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 1.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-2015, Robosoft. All rights reserved.
12
+ * Available only in http://robosoft.co/
13
+ */
14
+
15
+ function rbs_padding_field( $metakey, $post_id = 0 ) {
16
+ echo get_rbs_padding_field( $metakey, $post_id );
17
+ }
18
+
19
+ function rbs_padding_field_callback( $field, $value, $object_id, $object_type, $field_type_object ) {
20
+
21
+ $level = $field->args('level')?1:0;
22
+ $default = $field->args('default');
23
+ if(!is_array($default)) $default = array();
24
+
25
+ if(!isset($default['left'])) $default['left'] = 0;
26
+ if(!isset($default['top'])) $default['top'] = 0;
27
+ if(!isset($default['right'])) $default['right'] = 0;
28
+ if(!isset($default['bottom'])) $default['bottom'] = 0;
29
+ //if(!isset($default['enable'])) $default['enable'] = 0;
30
+
31
+
32
+ $value = wp_parse_args( $value, array(
33
+ 'left' => $default['left'],
34
+ 'top' => $default['top'],
35
+ 'right' => $default['right'],
36
+ 'bottom' => $default['bottom'],
37
+ //'enable' => $default['enable'],
38
+ ));
39
+
40
+ ?>
41
+ <div class="form-horizontal">
42
+ <div class="form-group">
43
+ <label class="col-xs-2 col-sm-2 control-label" for="<?php echo $field_type_object->_id(); ?>"><?php echo esc_html( $field->args('name') ); ?></label>
44
+
45
+ <div class="col-xs-5 col-sm-3<?php echo ($level?' rbs_disabled':'') ?>">
46
+ <div class="input-group">
47
+ <div class="input-group-addon"><?php _e('Left', 'rbs_gallery'); ?></div>
48
+ <?php
49
+ echo $field_type_object->input( array(
50
+ 'name' => $field_type_object->_name('[left]' ),
51
+ 'id' => $field_type_object->_id('[left]' ),
52
+ 'value' => $value['left'],
53
+ 'class' => 'form-control '.$field->args('class') ,
54
+ ));
55
+ ?>
56
+ </div>
57
+ </div>
58
+
59
+ <div class="col-xs-5 col-sm-3<?php echo ($level?' rbs_disabled':'') ?>">
60
+ <div class="input-group">
61
+ <div class="input-group-addon"><?php _e('Top', 'rbs_gallery'); ?></div>
62
+ <?php
63
+ echo $field_type_object->input( array(
64
+ 'name' => $field_type_object->_name('[top]' ),
65
+ 'id' => $field_type_object->_id('[top]' ),
66
+ 'value' => $value['top'],
67
+ 'class' => 'form-control '.$field->args('class') ,
68
+ ));
69
+ ?>
70
+ </div>
71
+ </div>
72
+
73
+ </div>
74
+ <div class="form-group">
75
+ <div class="col-xs-2 col-sm-2 "></div>
76
+
77
+ <div class="col-xs-5 col-sm-3<?php echo ($level?' rbs_disabled':'') ?>">
78
+ <div class="input-group">
79
+ <div class="input-group-addon"><?php _e('Right', 'rbs_gallery'); ?></div>
80
+ <?php
81
+ echo $field_type_object->input( array(
82
+ 'name' => $field_type_object->_name('[right]' ),
83
+ 'id' => $field_type_object->_id('[right]' ),
84
+ 'value' => $value['right'],
85
+ 'class' => 'form-control '.$field->args('class') ,
86
+ ));
87
+ ?>
88
+ </div>
89
+ </div>
90
+
91
+ <div class="col-xs-5 col-sm-3<?php echo ($level?' rbs_disabled':'') ?>">
92
+ <div class="input-group">
93
+ <div class="input-group-addon"><?php _e('Bottom', 'rbs_gallery'); ?></div>
94
+ <?php
95
+ echo $field_type_object->input( array(
96
+ 'name' => $field_type_object->_name('[bottom]' ),
97
+ 'id' => $field_type_object->_id('[bottom]' ),
98
+ 'value' => $value['bottom'],
99
+ 'class' => 'form-control '.$field->args('class') ,
100
+ ));
101
+ ?>
102
+ </div>
103
+ </div>
104
+
105
+
106
+ <?php if($level){ ?>
107
+ <div class="col-sm-2 rbs-block-pro">
108
+ <?php echo ROBO_GALLERY_LABEL_PRO; ?>
109
+ </div>
110
+ <?php } ?>
111
+ </div>
112
+ </div>
113
+ <?php
114
+ echo $field_type_object->_desc( true );
115
+
116
+ }
117
+ add_filter( 'cmb2_render_padding', 'rbs_padding_field_callback', 10, 5 );
includes/frontend/rbs_gallery_class.php CHANGED
@@ -383,6 +383,13 @@ class roboGallery extends roboGalleryUtils{
383
  case '': default:
384
  }
385
 
 
 
 
 
 
 
 
386
  if(count($this->selectImages->imgArray)){
387
 
388
  if( get_option( ROBO_GALLERY_PREFIX.'jqueryVersion', 'build' )=='forced' ){
@@ -444,10 +451,12 @@ class roboGallery extends roboGalleryUtils{
444
  if( $this->returnHtml ){
445
  $this->returnHtml =
446
  '<div style="'.$this->rbsMainDivStyle.'">'
447
- .($menu?$this->getMenu():'').
448
- '<div id="'.$this->galleryId.'" data-options="'.$this->galleryId.'" style="width:100%;" class="robo_gallery">'
449
- . $this->returnHtml
450
- .'</div>'
 
 
451
  .'</div>'
452
  .'<script>'.$this->compileJavaScript().'</script>';
453
 
383
  case '': default:
384
  }
385
 
386
+ $paddingCustom = get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'paddingCustom', true );
387
+ if( isset($paddingCustom['left']) && $paddingCustom['left'] ) $this->rbsMainDivStyle .= 'padding-left:'. $this->getCorrectSize($paddingCustom['left']).';';
388
+ if( isset($paddingCustom['top']) && $paddingCustom['top'] ) $this->rbsMainDivStyle .= 'padding-top:'. $this->getCorrectSize($paddingCustom['top']).';';
389
+ if( isset($paddingCustom['right']) && $paddingCustom['right'] ) $this->rbsMainDivStyle .= 'padding-right:'. $this->getCorrectSize($paddingCustom['right']).';';
390
+ if( isset($paddingCustom['bottom']) && $paddingCustom['bottom'] ) $this->rbsMainDivStyle .= 'padding-bottom:'.$this->getCorrectSize($paddingCustom['bottom']).';';
391
+
392
+
393
  if(count($this->selectImages->imgArray)){
394
 
395
  if( get_option( ROBO_GALLERY_PREFIX.'jqueryVersion', 'build' )=='forced' ){
451
  if( $this->returnHtml ){
452
  $this->returnHtml =
453
  '<div style="'.$this->rbsMainDivStyle.'">'
454
+ // .'<div style="'.$this->rbsMainDivStyle.'">'
455
+ .($menu?$this->getMenu():'').
456
+ '<div id="'.$this->galleryId.'" data-options="'.$this->galleryId.'" style="width:100%;" class="robo_gallery">'
457
+ . $this->returnHtml
458
+ .'</div>'
459
+ // .'</div>'
460
  .'</div>'
461
  .'<script>'.$this->compileJavaScript().'</script>';
462
 
includes/frontend/rbs_gallery_class_utils.php CHANGED
@@ -105,7 +105,15 @@ class roboGalleryUtils extends roboGalleryParent{
105
  return '{'.implode( ' , ', $ret ).'}';
106
  } else return '';
107
  }
108
-
 
 
 
 
 
 
 
 
109
  public function getThumbParams( ){
110
 
111
  }
105
  return '{'.implode( ' , ', $ret ).'}';
106
  } else return '';
107
  }
108
+
109
+ function getCorrectSize( $val = ''){
110
+ $correctVal = $val;
111
+ if( strpos( $val, '%')===false && strpos( $val, 'px')===false ){
112
+ $correctVal = $val.'px';
113
+ }
114
+ return $correctVal;
115
+ }
116
+
117
  public function getThumbParams( ){
118
 
119
  }
includes/options/rbs_gallery_options_size.php CHANGED
@@ -49,6 +49,15 @@ $size_group->add_field( array(
49
  'type' => 'rbsradiobutton',
50
  ));
51
 
 
 
 
 
 
 
 
 
 
52
  $size_group->add_field( array(
53
  'name' => __('Thumbs Options', 'rbs_gallery' ),
54
  'id' => ROBO_GALLERY_PREFIX . 'thumb-size-options',
49
  'type' => 'rbsradiobutton',
50
  ));
51
 
52
+ $size_group->add_field( array(
53
+ 'name' => __('Padding', 'rbs_gallery'),
54
+ 'id' => ROBO_GALLERY_PREFIX . 'paddingCustom',
55
+ 'type' => 'padding',
56
+ 'default' => array( 'left'=> 0, 'top'=> 0, 'right'=> 0, 'bottom'=> 0),
57
+ 'bootstrap_style'=> 1,
58
+
59
+ ));
60
+
61
  $size_group->add_field( array(
62
  'name' => __('Thumbs Options', 'rbs_gallery' ),
63
  'id' => ROBO_GALLERY_PREFIX . 'thumb-size-options',
includes/rbs_gallery_init.php CHANGED
@@ -133,6 +133,7 @@ if( rbs_gallery_get_current_post_type() == ROBO_GALLERY_TYPE_POST && ( rbs_galle
133
  'rbsgallery/cmb-field-rbsgallery.php',
134
  'multisize/rbs-multiSize.php',
135
  'rbsradiobutton/rbs-radiobutton.php',
 
136
 
137
 
138
  ), ROBO_GALLERY_CMB_FILEDS_PATH);
133
  'rbsgallery/cmb-field-rbsgallery.php',
134
  'multisize/rbs-multiSize.php',
135
  'rbsradiobutton/rbs-radiobutton.php',
136
+ 'padding/rbs-padding.php',
137
 
138
 
139
  ), ROBO_GALLERY_CMB_FILEDS_PATH);
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.4.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -74,6 +74,7 @@ Gallery with highly customizable interface, advanced and FREE Wordpress images g
74
  * **Advanced Social Sharing** - advanced social sharing functionality in lightbox. Implemented deep linking functionality for the gallery images social sharing services Facebook, Twitter, Pinterest, Google+
75
  * **Click Thumbnails** - advanced click functionality. You can use click on buttons or on the gallery thumbnails to enlarge gallery image or open gallery image link. With new functionality you can combine absolutely different features of the gallery clicking functionality.
76
  * **Gallery alignment** - implemented gallery alignment option. Possible to select one from implemented alignment modes: left, right, center for gallery alignment inside post or page content. Alignment could be disabled.
 
77
 
78
 
79
  = Gallery Pro Key Features =
@@ -187,14 +188,14 @@ If you have some conflict in gallery back end you can sort it with new compatibi
187
 
188
  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.
189
 
190
- = How to change quality of the gallery thumbnails? =
191
-
192
- Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
193
-
194
  = What can I do if some gallery interface elements in backend do not work properly? =
195
 
196
  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.
197
 
 
 
 
 
198
  = Is it possible create gallery in Wordpress post with Gallery? =
199
 
200
  Yes, you can insert gallery into post with shortcode tag
@@ -211,61 +212,61 @@ In gallery setting you can select which text show below image in gallery lightbo
211
 
212
  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
213
 
214
- = How I can create custom (grid) layout of the thumbnails? =
215
-
216
- 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
217
-
218
  = How to insert gallery into Wordpress page or post? =
219
 
220
  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
221
 
 
 
 
 
222
  = How to generate shortcode for Wordpress page, post or widget? =
223
 
224
  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
225
 
226
- = How to define custom hover effect for some gallery thumbnail? =
227
 
228
- 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.
229
 
230
- = Is it possible to create direct link on the front end to the gallery? =
231
 
232
- Yes, you can use generated direct link inside particular gallery settings
233
 
234
  = Where specify description of the gallery images? =
235
 
236
  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
237
 
238
- = Do you have some limits for images types in gallery? =
239
 
240
- You can use any standard file type in our gallery: png, jpg, jpeg, gif
241
 
242
  = Do you have some limits for images amount in gallery? =
243
 
244
  No, we don't have any limits for amount of the images in gallery
245
 
246
- = Do you have some limit for images size in gallery? =
247
 
248
- No, we don't have any limits for image size in our gallery.
249
 
250
- = How to customize border of the gallery thumbnails? =
251
 
252
- 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
253
 
254
- = How to change spacing between thumbnails? =
255
 
256
- In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
257
 
258
- = Is it possible to have different settings for hover and static interface elements? =
259
 
260
- Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
261
 
262
  = How to define custom link for some gallery images? =
263
 
264
  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
265
 
266
- = How to set description text below image in the lightbox? =
267
 
268
- 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.
269
 
270
  = How to change font size of the gallery image caption? =
271
 
@@ -275,9 +276,13 @@ In gallery settings you can enable custom caption settings where you can customi
275
 
276
  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
277
 
278
- = How to customize gallery layouts for different screen resolutions? =
279
 
280
- 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.
 
 
 
 
281
 
282
  = How to hide titles of the gallery image in lightbox ? =
283
 
@@ -287,25 +292,21 @@ In lightbox section of the gallery settings you can find hide title option. If y
287
 
288
  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
289
 
290
- = Is it possible to turn off border of the gallery thumbnails? =
291
-
292
- Yes, in gallery options you can turn on/off border option
293
-
294
- = How to change amount of images loading on gallery page? =
295
 
296
- 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
297
 
298
- = How to make shadow for the gallery thumbnails? =
299
 
300
- 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
301
 
302
  = Which parameters I can change for the gallery thumbnails borders and shadows? =
303
 
304
  You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
305
 
306
- = How to define size of the gallery images thumbnails? =
307
 
308
- 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
309
 
310
  = How to make gallery thumbnails with rounded corners? =
311
 
@@ -315,14 +316,14 @@ In gallery settings you can find section rounds where with special options you c
315
 
316
  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.
317
 
318
- = How to change font color of the gallery image caption? =
319
-
320
- In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
321
-
322
  = How to use multi-category functionality of the gallery? =
323
 
324
  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
325
 
 
 
 
 
326
  = Is it possible to create target blank links? =
327
 
328
  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.
@@ -367,10 +368,6 @@ When you open gallery images manager you'll find there image edit mode where you
367
 
368
  Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
369
 
370
- = How to change font size of the gallery image description text? =
371
-
372
- 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
373
-
374
  = How to rotate uploaded gallery image? =
375
 
376
  When you open gallery images manager you'll find there image edit mode where you can rotate source image
@@ -379,6 +376,10 @@ When you open gallery images manager you'll find there image edit mode where you
379
 
380
  Gallery have 15 hover animation effects, which could be combined with additional custom options
381
 
 
 
 
 
382
  = How to change color of the gallery thumbnails border? =
383
 
384
  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
@@ -387,14 +388,14 @@ When you enable border in gallery settings you will see multiply options for cus
387
 
388
  Yes, gallery have fade hover effect
389
 
390
- = How to change width of the gallery thumbnails border? =
391
-
392
- 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.
393
-
394
  = How to customize gallery hover effect shutter layout? =
395
 
396
  In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which gonna help you to build in some gallery images elements into hover
397
 
 
 
 
 
398
  = Do you have Polaroid style in your gallery? =
399
 
400
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
@@ -561,6 +562,13 @@ If any problem occurs, please contact us.
561
 
562
  == Changelog ==
563
 
 
 
 
 
 
 
 
564
  = 1.4.2 =
565
  * Added new values for gallery align in content option
566
  * Added left side alignment
@@ -724,6 +732,9 @@ If any problem occurs, please contact us.
724
 
725
  == Upgrade Notice ==
726
 
 
 
 
727
  = 1.4.2 =
728
  Added new left and right values for gallery align in content option
729
 
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.4.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
74
  * **Advanced Social Sharing** - advanced social sharing functionality in lightbox. Implemented deep linking functionality for the gallery images social sharing services Facebook, Twitter, Pinterest, Google+
75
  * **Click Thumbnails** - advanced click functionality. You can use click on buttons or on the gallery thumbnails to enlarge gallery image or open gallery image link. With new functionality you can combine absolutely different features of the gallery clicking functionality.
76
  * **Gallery alignment** - implemented gallery alignment option. Possible to select one from implemented alignment modes: left, right, center for gallery alignment inside post or page content. Alignment could be disabled.
77
+ * **Gallery Padding** - new padding options. Define custom values in pixels for padding gallery block in post or page content. Is it possible to define padding from left, right, top and bottom side.
78
 
79
 
80
  = Gallery Pro Key Features =
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.
190
 
 
 
 
 
191
  = What can I do if some gallery interface elements in backend do not work properly? =
192
 
193
  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.
194
 
195
+ = How to change quality of the gallery thumbnails? =
196
+
197
+ Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
198
+
199
  = Is it possible create gallery in Wordpress post with Gallery? =
200
 
201
  Yes, you can insert gallery into post with shortcode tag
212
 
213
  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
214
 
 
 
 
 
215
  = How to insert gallery into Wordpress page or post? =
216
 
217
  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
218
 
219
+ = How to define custom hover effect for some gallery thumbnail? =
220
+
221
+ 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.
222
+
223
  = How to generate shortcode for Wordpress page, post or widget? =
224
 
225
  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
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
230
 
231
+ = Do you have some limits for images types in gallery? =
232
 
233
+ You can use any standard file type in our gallery: png, jpg, jpeg, gif
234
 
235
  = Where specify description of the gallery images? =
236
 
237
  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
238
 
239
+ = Is it possible to create direct link on the front end to the gallery? =
240
 
241
+ Yes, you can use generated direct link inside particular gallery settings
242
 
243
  = Do you have some limits for images amount in gallery? =
244
 
245
  No, we don't have any limits for amount of the images in gallery
246
 
247
+ = How to make shadow for the gallery thumbnails? =
248
 
249
+ 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
250
 
251
+ = Do you have some limit for images size in gallery? =
252
 
253
+ No, we don't have any limits for image size in our gallery.
254
 
255
+ = How to change amount of images loading on gallery page? =
256
 
257
+ 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
258
 
259
+ = How to customize border of the gallery thumbnails? =
260
 
261
+ 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
262
 
263
  = How to define custom link for some gallery images? =
264
 
265
  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
266
 
267
+ = How to change spacing between thumbnails? =
268
 
269
+ In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
270
 
271
  = How to change font size of the gallery image caption? =
272
 
276
 
277
  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
278
 
279
+ = Is it possible to have different settings for hover and static interface elements? =
280
 
281
+ Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
282
+
283
+ = How to set description text below image in the lightbox? =
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 hide titles of the gallery image in lightbox ? =
288
 
292
 
293
  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
294
 
295
+ = How to customize gallery layouts for different screen resolutions? =
 
 
 
 
296
 
297
+ 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.
298
 
299
+ = How to define size of the gallery images thumbnails? =
300
 
301
+ 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
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
+ = Is it possible to turn off border of the gallery thumbnails? =
308
 
309
+ Yes, in gallery options you can turn on/off border option
310
 
311
  = How to make gallery thumbnails with rounded corners? =
312
 
316
 
317
  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.
318
 
 
 
 
 
319
  = How to use multi-category functionality of the gallery? =
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
+ = How to change font color of the gallery image caption? =
324
+
325
+ In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
326
+
327
  = Is it possible to create target blank links? =
328
 
329
  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.
368
 
369
  Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
370
 
 
 
 
 
371
  = How to rotate uploaded gallery image? =
372
 
373
  When you open gallery images manager you'll find there image edit mode where you can rotate source image
376
 
377
  Gallery have 15 hover animation effects, which could be combined with additional custom options
378
 
379
+ = How to change font size of the gallery image description text? =
380
+
381
+ 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
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
388
 
389
  Yes, gallery have fade hover effect
390
 
 
 
 
 
391
  = How to customize gallery hover effect shutter layout? =
392
 
393
  In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which gonna help you to build in some gallery images elements into hover
394
 
395
+ = How to change width of the gallery thumbnails border? =
396
+
397
+ 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.
398
+
399
  = Do you have Polaroid style in your gallery? =
400
 
401
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
562
 
563
  == Changelog ==
564
 
565
+ = 1.4.3 =
566
+ * Added new padding gallery options
567
+ * Added left gallery padding value
568
+ * Added top gallery padding value
569
+ * Added right gallery padding value
570
+ * Added bottom gallery padding value
571
+
572
  = 1.4.2 =
573
  * Added new values for gallery align in content option
574
  * Added left side alignment
732
 
733
  == Upgrade Notice ==
734
 
735
+ = 1.4.3 =
736
+ Added new padding gallery options. Added left, top, right and bottom gallery padding value
737
+
738
  = 1.4.2 =
739
  Added new left and right values for gallery align in content option
740
 
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.4.2
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.4.2');
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.4.3
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.4.3');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25