Gallery – Photo Gallery and Images Gallery - Version 1.8.6

Version Description

  • Fixed bug of the backend blocks status save
  • Added new engine for collection gallery views statistics
Download this release

Release Info

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

Code changes from version 1.8.5 to 1.8.6

includes/frontend/rbs_gallery_class.php CHANGED
@@ -75,6 +75,19 @@ class roboGallery extends roboGalleryUtils{
75
  public $scriptList = array();
76
 
77
  public $thumbClick = 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  function __construct($attr){
80
  $this->helper = new rbsHelper();
@@ -83,6 +96,9 @@ class roboGallery extends roboGalleryUtils{
83
  if( isset($attr) && isset($attr['id']) ){
84
 
85
  $this->id = $attr['id'];
 
 
 
86
  $options_id = (int) get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'options', true );
87
  if($options_id){
88
  $this->real_id = $this->id;
75
  public $scriptList = array();
76
 
77
  public $thumbClick = 0;
78
+
79
+ function updateCountView(){
80
+ if(!$this->id) return ;
81
+ $count_key = 'gallery_views_count';
82
+ $countView = (int) get_post_meta($this->id, $count_key, true);
83
+ if( !$countView){
84
+ $countView = 0;
85
+ delete_post_meta($this->id, $count_key);
86
+ add_post_meta($this->id, $count_key, '0');
87
+ }
88
+ $countView++;
89
+ update_post_meta($this->id, $count_key, $countView);
90
+ }
91
 
92
  function __construct($attr){
93
  $this->helper = new rbsHelper();
96
  if( isset($attr) && isset($attr['id']) ){
97
 
98
  $this->id = $attr['id'];
99
+
100
+ $this->updateCountView();
101
+
102
  $options_id = (int) get_post_meta( $this->id, ROBO_GALLERY_PREFIX.'options', true );
103
  if($options_id){
104
  $this->real_id = $this->id;
includes/options/rbs_gallery_options_button.php CHANGED
@@ -19,7 +19,7 @@ $button_group = new_cmb2_box( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'show_names' => false,
21
  'context' => 'normal',
22
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
  $button_group->add_field( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'show_names' => false,
21
  'context' => 'normal',
22
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
  $button_group->add_field( array(
includes/options/rbs_gallery_options_copy.php CHANGED
@@ -20,7 +20,7 @@ $copy_group = new_cmb2_box( array(
20
  'show_names' => false,
21
  'context' => 'normal',
22
  'priority' => 'high',
23
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
24
  ));
25
 
26
  $copy_group->add_field(array(
20
  'show_names' => false,
21
  'context' => 'normal',
22
  'priority' => 'high',
23
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
24
  ));
25
 
26
  $copy_group->add_field(array(
includes/options/rbs_gallery_options_hover.php CHANGED
@@ -19,7 +19,7 @@ $hover_group = new_cmb2_box( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'show_names' => false,
21
  'context' => 'normal',
22
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
  $hover_group->add_field( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'show_names' => false,
21
  'context' => 'normal',
22
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
  $hover_group->add_field( array(
includes/options/rbs_gallery_options_images.php CHANGED
@@ -19,7 +19,7 @@ $images_group = new_cmb2_box( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'side',
21
  'priority' => 'high',
22
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  'show_names' => false,
24
  ));
25
 
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'side',
21
  'priority' => 'high',
22
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  'show_names' => false,
24
  ));
25
 
includes/options/rbs_gallery_options_info.php CHANGED
@@ -19,7 +19,7 @@ $info_group = new_cmb2_box( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'side',
21
  'priority' => 'low',
22
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
  $info_group->add_field( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'side',
21
  'priority' => 'low',
22
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
  $info_group->add_field( array(
includes/options/rbs_gallery_options_infowide.php CHANGED
@@ -18,7 +18,7 @@ $infowide_group = new_cmb2_box( array(
18
  'title' => '<span class="dashicons dashicons-cart"></span> '.__('Get Pro version','rbs_gallery'),
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'normal',
21
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
22
  ));
23
 
24
  $infowide_group->add_field( array(
18
  'title' => '<span class="dashicons dashicons-cart"></span> '.__('Get Pro version','rbs_gallery'),
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'normal',
21
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
22
  ));
23
 
24
  $infowide_group->add_field( array(
includes/options/rbs_gallery_options_lightbox.php CHANGED
@@ -19,7 +19,7 @@ $lightbox_group = new_cmb2_box( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'show_names' => false,
21
  'context' => 'normal',
22
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
23
  ));
24
 
25
 
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'show_names' => false,
21
  'context' => 'normal',
22
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
23
  ));
24
 
25
 
includes/options/rbs_gallery_options_loading.php CHANGED
@@ -19,7 +19,7 @@ $loading_group = new_cmb2_box( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'normal',
21
  'show_names' => false,
22
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
23
  ));
24
 
25
  $loading_group->add_field(array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'normal',
21
  'show_names' => false,
22
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
23
  ));
24
 
25
  $loading_group->add_field(array(
includes/options/rbs_gallery_options_polaroid.php CHANGED
@@ -19,7 +19,7 @@ $polaroid_group = new_cmb2_box( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'show_names' => false,
21
  'context' => 'normal',
22
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
23
  ));
24
 
25
  $polaroid_group->add_field( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'show_names' => false,
21
  'context' => 'normal',
22
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
23
  ));
24
 
25
  $polaroid_group->add_field( array(
includes/options/rbs_gallery_options_shortcode.php CHANGED
@@ -19,7 +19,7 @@ $shortcode_group = new_cmb2_box( array(
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'side',
21
  'priority' => 'low',
22
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
  if(isset($_GET['post'])){
19
  'object_types' => array( ROBO_GALLERY_TYPE_POST ),
20
  'context' => 'side',
21
  'priority' => 'low',
22
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
23
  ));
24
 
25
  if(isset($_GET['post'])){
includes/options/rbs_gallery_options_size.php CHANGED
@@ -21,7 +21,7 @@ $size_group = new_cmb2_box( array(
21
  'show_names' => false,
22
  'context' => 'normal',
23
  'priority' => 'high',
24
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
25
  ));
26
 
27
  //$size_group->add_field( array('type' => 'toolbox'));
21
  'show_names' => false,
22
  'context' => 'normal',
23
  'priority' => 'high',
24
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
25
  ));
26
 
27
  //$size_group->add_field( array('type' => 'toolbox'));
includes/options/rbs_gallery_options_text.php CHANGED
@@ -20,7 +20,7 @@ $text_group = new_cmb2_box( array(
20
  'show_names' => false,
21
  'context' => 'side',
22
  'priority' => 'low',
23
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
24
  ));
25
 
26
  $text_group->add_field( array(
20
  'show_names' => false,
21
  'context' => 'side',
22
  'priority' => 'low',
23
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(1),
24
  ));
25
 
26
  $text_group->add_field( array(
includes/options/rbs_gallery_options_tools.php CHANGED
@@ -38,6 +38,7 @@ if(isset($_GET['post'])){
38
  .__('Posts List','rbs_gallery')
39
  .'</button>'
40
  .'<p class="rbs_desc">'.__('Here you can create and customize new post with gallery inside it','rbs_gallery').'</p> '
 
41
  .'</div>',
42
  'after_row' => '</div>',
43
  ));
38
  .__('Posts List','rbs_gallery')
39
  .'</button>'
40
  .'<p class="rbs_desc">'.__('Here you can create and customize new post with gallery inside it','rbs_gallery').'</p> '
41
+
42
  .'</div>',
43
  'after_row' => '</div>',
44
  ));
includes/options/rbs_gallery_options_view.php CHANGED
@@ -21,7 +21,7 @@ $view_group = new_cmb2_box( array(
21
  'show_names' => false,
22
  'context' => 'normal',
23
  'priority' => 'high',
24
- 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
25
  ));
26
 
27
  $view_group->add_field( array(
21
  'show_names' => false,
22
  'context' => 'normal',
23
  'priority' => 'high',
24
+ // 'closed' => rbs_gallery_set_checkbox_default_for_new_post(0),
25
  ));
26
 
27
  $view_group->add_field( array(
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: 1.8.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -190,81 +190,106 @@ You can use any standard file type in our gallery: png, jpg, jpeg, gif
190
 
191
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
192
 
193
- = How to define custom link for some gallery images? =
194
 
195
- 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
 
 
 
 
 
 
 
 
196
 
197
  = How to change amount of images loading on gallery page? =
198
 
199
  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
200
 
201
- = Is it possible create gallery in Wordpress post with Gallery? =
202
 
203
- Yes, you can insert gallery into post with shortcode tag
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 define video for some gallery image? =
210
 
211
- 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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
 
213
  = How to make shadow for the gallery thumbnails? =
214
 
215
  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
216
 
217
- = Is it possible to turn off border of the gallery thumbnails? =
218
 
219
- Yes, in gallery options you can turn on/off border option
220
 
221
- = How to change quality of the gallery thumbnails? =
222
 
223
- Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
224
 
225
  = Do you have some limit for images size in gallery? =
226
 
227
  No, we don't have any limits for image size in our gallery.
228
 
229
- = How to change font size of the gallery image caption? =
230
-
231
- In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
232
-
233
- = Is it possible to use HTML in image description ? =
234
 
235
- Yes, you can use HTML tags inside gallery image description field
236
 
237
  = How to hide titles of the gallery image in lightbox ? =
238
 
239
  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.
240
 
241
- = Which parameters I can change for the gallery thumbnails borders and shadows? =
242
 
243
- You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
244
 
245
- = How to use multi-category functionality of the gallery? =
246
 
247
- 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
248
 
249
- = How to customize border of the gallery thumbnails? =
250
 
251
- 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
 
 
 
 
252
 
253
  = How to define custom link for some gallery images? =
254
 
255
  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
256
 
257
- = How to change color of the gallery interface elements? =
258
 
259
- 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.
 
260
 
261
- = How to define video for some gallery image? =
262
 
263
- 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
264
 
265
- = How to make gallery thumbnails with rounded corners? =
266
 
267
- In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
268
 
269
  = What can I do if some gallery interface elements in backend do not work properly? =
270
 
@@ -274,33 +299,25 @@ If you have some conflict in gallery back end you can sort it with new compatibi
274
 
275
  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
276
 
277
- = How to change font color of the gallery image description text? =
278
-
279
- 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?
280
-
281
- = What can I do if some gallery interface elements in backend do not work properly? =
282
 
283
- 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.
284
 
285
  = Where specify description of the gallery images? =
286
 
287
  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
288
 
289
- = How to define custom hover effect for some gallery thumbnail? =
290
-
291
- 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.
292
-
293
- = How to change text below image in lightbox ? =
294
-
295
- 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.
296
-
297
  = How to change width of the gallery thumbnails border? =
298
 
299
  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.
300
 
301
- = How to customize border of the gallery thumbnails? =
302
 
303
- 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
 
 
 
 
304
 
305
  = How I can create custom (grid) layout of the thumbnails? =
306
 
@@ -314,14 +331,6 @@ In gallery settings you can find hover type options. In settings of the gallery
314
 
315
  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.
316
 
317
- = Do you have fade effect for the thumbnails hover? =
318
-
319
- Yes, gallery have fade hover effect
320
-
321
- = Is it possible to customize gallery image caption ? =
322
-
323
- 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
324
-
325
  = Do you have some conflict in gallery back end? =
326
 
327
  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.
@@ -346,14 +355,6 @@ In gallery settings you can find option to enable/disable lazy load, also there
346
 
347
  When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
348
 
349
- = How to define size of the gallery images thumbnails? =
350
-
351
- 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
352
-
353
- = How to insert gallery into Wordpress page or post? =
354
-
355
- 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
356
-
357
  = How to load more function work? =
358
 
359
  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
@@ -588,6 +589,10 @@ If any problem occurs, please contact us.
588
 
589
  == Changelog ==
590
 
 
 
 
 
591
  = 1.8.5 =
592
  * Updated statistics gallery section
593
  * New trash gallery value
@@ -954,6 +959,9 @@ If any problem occurs, please contact us.
954
 
955
  == Upgrade Notice ==
956
 
 
 
 
957
  = 1.8.5 =
958
  Updated statistics gallery section, new trash gallery value
959
 
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: 1.8.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
190
 
191
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
192
 
193
+ = How to change quality of the gallery thumbnails? =
194
 
195
+ Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
196
+
197
+ = Is it possible create gallery in Wordpress post with Gallery? =
198
+
199
+ Yes, you can insert gallery into post with shortcode tag
200
+
201
+ = How to define video for some gallery image? =
202
+
203
+ 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
204
 
205
  = How to change amount of images loading on gallery page? =
206
 
207
  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
208
 
209
+ = What can I do if some gallery interface elements in backend do not work properly? =
210
 
211
+ 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.
212
 
213
+ = Is it possible to turn off border of the gallery thumbnails? =
214
 
215
+ Yes, in gallery options you can turn on/off border option
216
 
217
+ = How to use multi-category functionality of the gallery? =
218
 
219
+ 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
220
+
221
+ = How to change color of the gallery interface elements? =
222
+
223
+ 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.
224
+
225
+ = How to customize border of the gallery thumbnails? =
226
+
227
+ 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
228
+
229
+ = How to make gallery thumbnails with rounded corners? =
230
+
231
+ In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
232
+
233
+ = Do you have some limits for images amount in gallery? =
234
+
235
+ No, we don't have any limits for amount of the images in gallery
236
 
237
  = How to make shadow for the gallery thumbnails? =
238
 
239
  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
240
 
241
+ = How to define custom link for some gallery images? =
242
 
243
+ 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
244
 
245
+ = How to customize border of the gallery thumbnails? =
246
 
247
+ 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
248
 
249
  = Do you have some limit for images size in gallery? =
250
 
251
  No, we don't have any limits for image size in our gallery.
252
 
253
+ = Which parameters I can change for the gallery thumbnails borders and shadows? =
 
 
 
 
254
 
255
+ You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
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 to change font size of the gallery image caption? =
262
 
263
+ In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
264
 
265
+ = How to change text below image in lightbox ? =
266
 
267
+ 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.
268
 
269
+ = How to define custom hover effect for some gallery thumbnail? =
270
 
271
+ 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.
272
+
273
+ = Is it possible to use HTML in image description ? =
274
+
275
+ Yes, you can use HTML tags inside gallery image description field
276
 
277
  = How to define custom link for some gallery images? =
278
 
279
  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
280
 
281
+ = How to change font color of the gallery image description text? =
282
 
283
+ 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
284
+ the text?
285
 
286
+ = Is it possible to customize gallery image caption ? =
287
 
288
+ 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
289
 
290
+ = How to define video for some gallery image? =
291
 
292
+ 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
293
 
294
  = What can I do if some gallery interface elements in backend do not work properly? =
295
 
299
 
300
  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
301
 
302
+ = How to insert gallery into Wordpress page or post? =
 
 
 
 
303
 
304
+ 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
305
 
306
  = Where specify description of the gallery images? =
307
 
308
  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
309
 
 
 
 
 
 
 
 
 
310
  = How to change width of the gallery thumbnails border? =
311
 
312
  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.
313
 
314
+ = How to define size of the gallery images thumbnails? =
315
 
316
+ 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
317
+
318
+ = Do you have fade effect for the thumbnails hover? =
319
+
320
+ Yes, gallery have fade hover effect
321
 
322
  = How I can create custom (grid) layout of the thumbnails? =
323
 
331
 
332
  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.
333
 
 
 
 
 
 
 
 
 
334
  = Do you have some conflict in gallery back end? =
335
 
336
  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.
355
 
356
  When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
357
 
 
 
 
 
 
 
 
 
358
  = How to load more function work? =
359
 
360
  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
589
 
590
  == Changelog ==
591
 
592
+ = 1.8.6 =
593
+ * Fixed bug of the backend blocks status save
594
+ * Added new engine for collection gallery views statistics
595
+
596
  = 1.8.5 =
597
  * Updated statistics gallery section
598
  * New trash gallery value
959
 
960
  == Upgrade Notice ==
961
 
962
+ = 1.8.6 =
963
+ Fixed bug of the backend blocks status save, added new engine for collection gallery views statistics
964
+
965
  = 1.8.5 =
966
  Updated statistics gallery section, new trash gallery value
967
 
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.8.5
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.8.5');
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.8.6
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.8.6');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25