Gallery – Photo Gallery and Images Gallery - Version 1.5.3

Version Description

  • New option for post generator
  • Added preview button in post dialog wizard
Download this release

Release Info

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

Code changes from version 1.5.2 to 1.5.3

css/admin/edit.css CHANGED
@@ -1 +1 @@
1
- /*
2
  z-index: 1000;
3
  opacity: 0.4;
4
  pointer-events: none;
5
  z-index: 1000;
6
  opacity: 0.1;
7
  pointer-events: none;
8
  padding-top: 7px;
9
  text-align: right;
10
  cursor: pointer;
 
11
  z-index: 1000;
12
  opacity: 0.4;
13
  pointer-events: none;
14
  z-index: 1000;
15
  opacity: 0.1;
16
  pointer-events: none;
17
  padding-top: 7px;
18
  text-align: right;
19
  cursor: pointer;
 
1
  z-index: 1000;
2
  opacity: 0.4;
3
  pointer-events: none;
4
  z-index: 1000;
5
  opacity: 0.1;
6
  pointer-events: none;
7
  padding-top: 7px;
8
  text-align: right;
9
  cursor: pointer;
10
+ /*
11
  z-index: 1000;
12
  opacity: 0.4;
13
  pointer-events: none;
14
  z-index: 1000;
15
  opacity: 0.1;
16
  pointer-events: none;
17
  padding-top: 7px;
18
  text-align: right;
19
  cursor: pointer;
includes/extensions/rbs_create_post.php CHANGED
@@ -7,9 +7,9 @@ if(!function_exists('rbs_create_article_button')){
7
  wp_enqueue_script( 'rbs_create_post', ROBO_GALLERY_URL.'js/admin/extensions/create_post.js', array('jquery'), ROBO_GALLERY_VERSION, false);
8
 
9
  echo ' <div id="rbs_actionWindow" class="hidden" '
10
- .'data-title="'.__('Article creation dialog','rbs_gallery').'"'
11
- .'data-close="'.__('Close','rbs_gallery').'"'
12
- .'data-button="'.__('Create post','rbs_gallery').'"'
13
  .'>';
14
  ?>
15
  <div id="rbs_actionWindowContent">
7
  wp_enqueue_script( 'rbs_create_post', ROBO_GALLERY_URL.'js/admin/extensions/create_post.js', array('jquery'), ROBO_GALLERY_VERSION, false);
8
 
9
  echo ' <div id="rbs_actionWindow" class="hidden" '
10
+ .'data-title="'.__('Post manager','rbs_gallery').'" '
11
+ .'data-close="'.__('Close','rbs_gallery').'" '
12
+ .'data-button="'.__('Create post','rbs_gallery').'" '
13
  .'>';
14
  ?>
15
  <div id="rbs_actionWindowContent">
includes/extensions/rbs_create_post_ajax.php CHANGED
@@ -2,60 +2,6 @@
2
  if ( ! defined( 'WPINC' ) ) die;
3
 
4
  rbs_gallery_include('class.postcontroller.php', ROBO_GALLERY_EXTENSIONS_PATH);
5
-
6
-
7
- if(!function_exists('rbs_ajax_create_article')){
8
- function rbs_ajax_create_article(){
9
- if(
10
- isset($_POST['galleryid']) && (int)$_POST['galleryid'] &&
11
- isset($_POST['categoryid']) && (int)$_POST['categoryid']
12
- ){
13
- $galleryid = intval( $_POST['galleryid'] );
14
- $categoryid = intval( $_POST['categoryid'] );
15
-
16
- $post_info = get_post( $galleryid );
17
-
18
- if( gettype($post_info)!='object' ) {
19
- echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong><br><p>empty gallery id</p>';
20
- die();
21
- }
22
-
23
- $Poster = new PostController;
24
-
25
- $title = $post_info->post_title;
26
- if(isset( $_POST['articletitle'] ) && $_POST['articletitle'] ) $title = wp_kses_data($_POST['articletitle']);
27
-
28
- $slug = 'post_'.$post_info->post_name;
29
- if(isset( $_POST['articleslug'] ) && $_POST['articleslug'] ) $slug = wp_kses_data($_POST['articleslug']);
30
-
31
-
32
-
33
- $Poster->set_title( $title );
34
- $Poster->add_category( array($categoryid) );
35
- $Poster->set_type( "post" );
36
- $Poster->set_content( '[robo-gallery id="'.$galleryid.'"]' );
37
- $Poster->set_author_id( get_current_user_id() );
38
- $Poster->set_post_slug( $slug );
39
- $Poster->set_post_state( "publish" );
40
- $Poster->create();
41
-
42
- if( isset($Poster->errors) && count($Poster->errors) ){
43
- echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong><br>';
44
- for ($i=0; $i < count($Poster->errors); $i++) {
45
- $error = $Poster->errors[$i];
46
- echo ' &nbsp;&nbsp; - '.$error.'<br>';
47
- }
48
- echo '</p>';
49
- } else {
50
- echo '<p>'.__('Post created','rbs_gallery').'</p>';
51
- }
52
- } else {
53
- echo '<p><strong>'.__('Error: input value','rbs_gallery').'</strong></p>';
54
- }
55
- die();
56
- }
57
- }
58
-
59
  if(!function_exists('rbs_ajax_create_article_form')){
60
  function rbs_ajax_create_article_form(){
61
  $args = array(
@@ -91,22 +37,22 @@ if(!function_exists('rbs_ajax_create_article_form')){
91
  echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong><br><p>'._e('Incorrect gallery ID','rbs_gallery').'</p>';
92
  return ;
93
  }
94
-
95
  ?>
96
  <table class="form-table">
97
  <tbody>
98
  <tr>
99
- <th scope="row"><label for="rbs_post_create_title"><?php _e('Select category','rbs_gallery'); ?></label></th>
100
  <td><?php wp_dropdown_categories( $args ); ?></td>
101
  </tr>
102
 
103
  <tr>
104
- <th scope="row"><label for="rbs_post_create_title">Post Title</label></th>
105
  <td><input name="rbs_post_create_title" id="rbs_post_create_title" value="<?php echo $post_info->post_title ;?>" class="regular-text" type="text"></td>
106
  </tr>
107
 
108
  <tr>
109
- <th scope="row"><label for="rbs_post_create_slug">Post Slug</label></th>
110
  <td><input name="rbs_post_create_slug" id="rbs_post_create_slug" value="<?php echo 'post_'.$post_info->post_name;?>" class="regular-text" type="text"></td>
111
  </tr>
112
  </tbody>
@@ -115,4 +61,70 @@ if(!function_exists('rbs_ajax_create_article_form')){
115
 
116
  echo '<p>'.__('Short tag of the gallery will be insert into created article.','rbs_gallery').'</p>';
117
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  }
2
  if ( ! defined( 'WPINC' ) ) die;
3
 
4
  rbs_gallery_include('class.postcontroller.php', ROBO_GALLERY_EXTENSIONS_PATH);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  if(!function_exists('rbs_ajax_create_article_form')){
6
  function rbs_ajax_create_article_form(){
7
  $args = array(
37
  echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong><br><p>'._e('Incorrect gallery ID','rbs_gallery').'</p>';
38
  return ;
39
  }
40
+ echo "<h3>".__('Add new post','rbs_gallery')."</h3>";
41
  ?>
42
  <table class="form-table">
43
  <tbody>
44
  <tr>
45
+ <th scope="row"><label for="rbs_post_create_category"><?php _e('Category','rbs_gallery'); ?>:</label></th>
46
  <td><?php wp_dropdown_categories( $args ); ?></td>
47
  </tr>
48
 
49
  <tr>
50
+ <th scope="row"><label for="rbs_post_create_title"><?php _e('Title','rbs_gallery'); ?>:</label></th>
51
  <td><input name="rbs_post_create_title" id="rbs_post_create_title" value="<?php echo $post_info->post_title ;?>" class="regular-text" type="text"></td>
52
  </tr>
53
 
54
  <tr>
55
+ <th scope="row"><label for="rbs_post_create_slug"><?php _e('Slug','rbs_gallery'); ?>:</label></th>
56
  <td><input name="rbs_post_create_slug" id="rbs_post_create_slug" value="<?php echo 'post_'.$post_info->post_name;?>" class="regular-text" type="text"></td>
57
  </tr>
58
  </tbody>
61
 
62
  echo '<p>'.__('Short tag of the gallery will be insert into created article.','rbs_gallery').'</p>';
63
  }
64
+ }
65
+
66
+ if(!function_exists('rbs_ajax_create_article')){
67
+ function rbs_ajax_create_article(){
68
+ if(
69
+ isset($_POST['galleryid']) && (int)$_POST['galleryid'] &&
70
+ isset($_POST['categoryid']) && (int)$_POST['categoryid']
71
+ ){
72
+ $galleryid = intval( $_POST['galleryid'] );
73
+ $categoryid = intval( $_POST['categoryid'] );
74
+
75
+ $post_info = get_post( $galleryid );
76
+
77
+ if( gettype($post_info)!='object' ) {
78
+ echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong><br><p>empty gallery id</p>';
79
+ die();
80
+ }
81
+
82
+ $Poster = new PostController;
83
+
84
+ $title = $post_info->post_title;
85
+ if(isset( $_POST['articletitle'] ) && $_POST['articletitle'] ) $title = wp_kses_data($_POST['articletitle']);
86
+
87
+ $slug = 'post_'.$post_info->post_name;
88
+ if(isset( $_POST['articleslug'] ) && $_POST['articleslug'] ) $slug = wp_kses_data($_POST['articleslug']);
89
+
90
+ $Poster->set_title( $title );
91
+ $Poster->add_category( array($categoryid) );
92
+ $Poster->set_type( "post" );
93
+ $Poster->set_content( '[robo-gallery id="'.$galleryid.'"]' );
94
+ $Poster->set_author_id( get_current_user_id() );
95
+ $Poster->set_post_slug( $slug );
96
+ $Poster->set_post_state( "publish" );
97
+ $Poster->create();
98
+
99
+ $posts_id = get_post_meta($galleryid, 'rbs_gallery_id',true );
100
+
101
+ if(!$posts_id) $posts_id = array();
102
+ else $posts_id = json_decode($posts_id, true);
103
+
104
+ $posts_id[] = $Poster->PC_current_post_id;
105
+
106
+ update_post_meta($galleryid, 'rbs_gallery_id', json_encode($posts_id, JSON_FORCE_OBJECT ));
107
+
108
+ if( isset($Poster->errors) && count($Poster->errors) ){
109
+ echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong><br>';
110
+ for ($i=0; $i < count($Poster->errors); $i++) {
111
+ $error = $Poster->errors[$i];
112
+ echo ' &nbsp;&nbsp; - '.$error.'<br>';
113
+ }
114
+ echo '</p>';
115
+ } else {
116
+ echo '<h3>'.__('Post ','rbs_gallery').'"'.$title.'"'.__(' created','rbs_gallery').'</h3>';
117
+ echo '<p>
118
+
119
+ <a href="'.esc_url( get_permalink($Poster->PC_current_post_id) ).'" class="button button-small" target="_blank">
120
+ '.__('Preview','rbs_gallery')
121
+ .'</a>
122
+ </p>';
123
+
124
+ }
125
+ } else {
126
+ echo '<p><strong>'.__('Error: input value','rbs_gallery').'</strong></p>';
127
+ }
128
+ die();
129
+ }
130
  }
includes/options/rbs_gallery_options_tools.php CHANGED
@@ -27,11 +27,12 @@ if(isset($_GET['post'])){
27
  'id' => ROBO_GALLERY_PREFIX.'create_acticle',
28
  'type' => 'title',
29
  'before_row' => '<div class="rbs_block">'
30
- .'<div class="rbs-center-block rbs-margin-block">'
31
  .'<button id="rbs_create_article" data-galleryid="'.(int)$_GET['post'].'" class="btn btn-info btn-lg ">'
32
  .'<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> '
33
  .__('Create Post','rbs_gallery')
34
  .'</button>'
 
35
  .'<p class="rbs_desc">'.__('Here you can create and customize new post with gallery inside it','rbs_gallery').'</p> '
36
  .'</div>',
37
  'after_row' => '</div>',
27
  'id' => ROBO_GALLERY_PREFIX.'create_acticle',
28
  'type' => 'title',
29
  'before_row' => '<div class="rbs_block">'
30
+ .'<div class="rbs-center-block rbs-margin-block rbs-post-tools">'
31
  .'<button id="rbs_create_article" data-galleryid="'.(int)$_GET['post'].'" class="btn btn-info btn-lg ">'
32
  .'<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> '
33
  .__('Create Post','rbs_gallery')
34
  .'</button>'
35
+
36
  .'<p class="rbs_desc">'.__('Here you can create and customize new post with gallery inside it','rbs_gallery').'</p> '
37
  .'</div>',
38
  'after_row' => '</div>',
js/admin/extensions/create_post.js CHANGED
@@ -36,6 +36,11 @@
36
  'height': 'auto',
37
  'fluid': true,
38
  'resizable': false,
 
 
 
 
 
39
  'responsive': true,
40
  'draggable': false,
41
  'closeOnEscape' : true,
@@ -56,12 +61,20 @@
56
  //$(".ui-dialog-titlebar-close").addClass("ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ui-dialog-titlebar-close");
57
 
58
  rbs_insert_post_button = $(".rbs-create-post-button-insert");
59
- rbs_insert_post_content = $("#rbs_actionWindowContent");
60
 
61
- $('#rbs_create_article').click(function(evnt){
62
- evnt.preventDefault();
 
63
  if(progressHtml=='') progressHtml= rbs_insert_post_content.html();
64
  else rbs_insert_post_content.html(progressHtml);
 
 
 
 
 
 
 
 
65
  var data = {
66
  'action': 'rbs_gallery',
67
  'function': 'create_article_form',
36
  'height': 'auto',
37
  'fluid': true,
38
  'resizable': false,
39
+ // 'position': { my: "left top", at: "left bottom", of: button },
40
+ 'position': {
41
+ my: "center",
42
+ at: "center top+150"
43
+ },
44
  'responsive': true,
45
  'draggable': false,
46
  'closeOnEscape' : true,
61
  //$(".ui-dialog-titlebar-close").addClass("ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ui-dialog-titlebar-close");
62
 
63
  rbs_insert_post_button = $(".rbs-create-post-button-insert");
 
64
 
65
+ rbs_insert_post_content = $("#rbs_actionWindowContent");
66
+
67
+ var prepareDialog = function(){
68
  if(progressHtml=='') progressHtml= rbs_insert_post_content.html();
69
  else rbs_insert_post_content.html(progressHtml);
70
+
71
+ };
72
+
73
+
74
+
75
+ $('#rbs_create_article').click(function(evnt){
76
+ evnt.preventDefault();
77
+ prepareDialog();
78
  var data = {
79
  'action': 'rbs_gallery',
80
  'function': 'create_article_form',
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.robosoft.co/robogallery
4
  Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.3
7
- Stable tag: 1.5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -188,6 +188,14 @@ If you have some conflict in gallery back end you can sort it with new compatibi
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
  = Is it possible create gallery in Wordpress post with Gallery? =
192
 
193
  Yes, you can insert gallery into post with shortcode tag
@@ -196,17 +204,17 @@ Yes, you can insert gallery into post with shortcode tag
196
 
197
  Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
198
 
199
- = What can I do if some gallery interface elements in backend do not work properly? =
200
-
201
- If you have some conflict in gallery back end you can sort it with new compatibility option. If combo box element do not drop down you can switch between classic and modern style, as result you can avoid conflict with another code.
202
-
203
  = Do you have some limits for images types in gallery? =
204
 
205
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
206
 
207
- = How to generate shortcode for Wordpress page, post or widget? =
208
 
209
- First of all you can copy shortcode inside gallery settings , in separate shortcode block. Another way generate shortcode directly in post or page edit mode. You can find wizard button on top of content editor
 
 
 
 
210
 
211
  = How to change quality of the gallery thumbnails? =
212
 
@@ -216,57 +224,37 @@ Quality of the gallery thumbnails could be easily changed in gallery size option
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 customize hover effect? =
220
-
221
- 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
222
-
223
- = How to change amount of images loading on gallery page? =
224
-
225
- In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
226
-
227
  = How to define custom hover effect for some gallery thumbnail? =
228
 
229
  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.
230
 
231
- = How I can create custom (grid) layout of the thumbnails? =
232
-
233
- In our gallery we implemented layout based on columns amount. So you can general amount of the columns in your gallery grid and define custom amount of the columns which every image gonna take. As result you can customize layout of the gallery grid
234
-
235
  = How to change font size of the gallery image caption? =
236
 
237
  In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
238
 
239
- = How to change text below image in lightbox ? =
240
 
241
- In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
242
 
243
- = Is it possible to create direct link on the front end to the gallery? =
244
 
245
- Yes, you can use generated direct link inside particular gallery settings
246
 
247
  = How to customize border of the gallery thumbnails? =
248
 
249
  In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
250
 
251
- = Do you have some limits for images amount in gallery? =
252
-
253
- No, we don't have any limits for amount of the images in gallery
254
-
255
- = Where specify description of the gallery images? =
256
-
257
- When you open gallery settings inside you'll find images manager section. Images manager make you able to add/edit descriptions and titles of every gallery image
258
-
259
- = How to enable lazy load in gallery options? =
260
 
261
- 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
262
 
263
  = How to customize border of the gallery thumbnails? =
264
 
265
  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
266
 
267
- = How to make shadow for the gallery thumbnails? =
268
 
269
- 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
270
 
271
  = How to hide titles of the gallery image in lightbox ? =
272
 
@@ -276,25 +264,33 @@ In lightbox section of the gallery settings you can find hide title option. If y
276
 
277
  No, we don't have any limits for image size in our gallery.
278
 
279
- = How to set description text below image in the lightbox? =
280
 
281
- In gallery settings you can find lightbox section and if you need to show description of the images below images in the lightbox you need to select text source in lightbox settings from defined values.
282
 
283
- = How to change spacing between thumbnails? =
284
 
285
- In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
286
 
287
  = Is it possible to have different settings for hover and static interface elements? =
288
 
289
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
290
 
 
 
 
 
291
  = How to define size of the gallery images thumbnails? =
292
 
293
  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
294
 
295
- = How to change color of the gallery interface elements? =
296
 
297
- 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.
 
 
 
 
298
 
299
  = How to customize gallery layouts for different screen resolutions? =
300
 
@@ -304,25 +300,33 @@ In admin section of the gallery you'll find columns options which provide you ad
304
 
305
  In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
306
 
307
- = How to make gallery thumbnails with rounded corners? =
308
 
309
- In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
310
 
311
  = How to define custom link for some gallery images? =
312
 
313
  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
314
 
 
 
 
 
315
  = How to use multi-category functionality of the gallery? =
316
 
317
  In our gallery we implemented multi-categories structure. Every gallery category could have child and parent gallery, which you can manually define in gallery settings
318
 
 
 
 
 
319
  = How to change ordering of the gallery images? =
320
 
321
  When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
322
 
323
- = Which parameters I can change for the gallery thumbnails borders and shadows? =
324
 
325
- You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
326
 
327
  = Is it possible to use HTML in image description ? =
328
 
@@ -332,14 +336,18 @@ Yes, you can use HTML tags inside gallery image description field
332
 
333
  Yes, in gallery options you can turn on/off border option
334
 
335
- = How to load more function work? =
336
-
337
- 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
338
-
339
  = How to change font color of the gallery image description text? =
340
 
341
  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
342
 
 
 
 
 
 
 
 
 
343
  = Is it possible to customize gallery image caption ? =
344
 
345
  In gallery settings you can find images manager where you can change settings of every image, one of the option it's caption of the image
@@ -356,18 +364,6 @@ When you open gallery images manager you'll find there image edit mode where you
356
 
357
  In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
358
 
359
- = How to define custom ALT for gallery image? =
360
-
361
- When you open gallery images manager you can define alt for every gallery image there
362
-
363
- = Where to change settings of the image of the gallery? =
364
-
365
- Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
366
-
367
- = How to rotate uploaded gallery image? =
368
-
369
- When you open gallery images manager you'll find there image edit mode where you can rotate source image
370
-
371
  = Do you have fade effect for the thumbnails hover? =
372
 
373
  Yes, gallery have fade hover effect
@@ -376,6 +372,10 @@ Yes, gallery have fade hover effect
376
 
377
  When you open gallery images manager you'll find there image edit mode where you can crop source image
378
 
 
 
 
 
379
  = How to change color of the gallery thumbnails border? =
380
 
381
  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
@@ -384,10 +384,6 @@ When you enable border in gallery settings you will see multiply options for cus
384
 
385
  Gallery have 15 hover animation effects, which could be combined with additional custom options
386
 
387
- = How to change font size of the gallery image description text? =
388
-
389
- 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
390
-
391
  = How to add text before and after gallery? =
392
 
393
  In gallery settings you can find before/after text gallery field. This fields support HTML tags.
@@ -396,6 +392,10 @@ In gallery settings you can find before/after text gallery field. This fields su
396
 
397
  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
398
 
 
 
 
 
399
  = Is it possible to change transparency of the hover shutter? =
400
 
401
  Yes, it's possible to change transparency in gallery settings
@@ -404,6 +404,10 @@ Yes, it's possible to change transparency in gallery settings
404
 
405
  Gallery menu have multiply configuration options. Some of the options changing color of the buttons, some of them changing style of the buttons, which makes buttons for example 3d or with rounded corners
406
 
 
 
 
 
407
  = How to change width of the gallery thumbnails border? =
408
 
409
  When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border width in pixels.
@@ -412,10 +416,6 @@ When you enable border in gallery settings you will see multiply options for cus
412
 
413
  If you wish to make section with gallery without spacing between thumbnails you need just set horizontal and vertical spacing to 0 in gallery thumbnails view options
414
 
415
- = How to change style of the gallery thumbnails border? =
416
-
417
- When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border style. You can select one value from pre-defined list
418
-
419
  = Do you have Polaroid style in your gallery? =
420
 
421
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
@@ -436,14 +436,14 @@ For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
436
 
437
  In gallery hover settings we implemented full set of configuration settings of the buttons. You can change icon, style size, colors for static and hovered buttons. You can select icon with build in wizard
438
 
439
- = How to change icon on gallery thumbnail button? =
440
-
441
- 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
442
-
443
  = 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? =
444
 
445
  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.
446
 
 
 
 
 
447
  = Which style parameters I can change for the hover button icon? =
448
 
449
  You can select border color, background color and color of the icon, size of the icon
@@ -574,6 +574,10 @@ If any problem occurs, please contact us.
574
 
575
  == Changelog ==
576
 
 
 
 
 
577
  = 1.5.2 =
578
  * New option for post generator
579
  * Possible define custom slug for new gallery post
@@ -779,6 +783,9 @@ If any problem occurs, please contact us.
779
 
780
  == Upgrade Notice ==
781
 
 
 
 
782
  = 1.5.2 =
783
  New option for post generator, possible define custom slug for new gallery post
784
 
4
  Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.3
7
+ Stable tag: 1.5.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
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 generate shortcode for Wordpress page, post or widget? =
196
+
197
+ 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
198
+
199
  = Is it possible create gallery in Wordpress post with Gallery? =
200
 
201
  Yes, you can insert gallery into post with shortcode tag
204
 
205
  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
206
 
 
 
 
 
207
  = Do you have some limits for images types in gallery? =
208
 
209
  You can use any standard file type in our gallery: png, jpg, jpeg, gif
210
 
211
+ = How to change amount of images loading on gallery page? =
212
 
213
+ 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
214
+
215
+ = How to customize hover effect? =
216
+
217
+ 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
  = How to change quality of the gallery thumbnails? =
220
 
224
 
225
  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
226
 
 
 
 
 
 
 
 
 
227
  = How to define custom hover effect for some gallery thumbnail? =
228
 
229
  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.
230
 
 
 
 
 
231
  = How to change font size of the gallery image caption? =
232
 
233
  In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
234
 
235
+ = How I can create custom (grid) layout of the thumbnails? =
236
 
237
+ 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
238
 
239
+ = How to change text below image in lightbox ? =
240
 
241
+ In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
242
 
243
  = How to customize border of the gallery thumbnails? =
244
 
245
  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
246
 
247
+ = Is it possible to create direct link on the front end to the gallery? =
 
 
 
 
 
 
 
 
248
 
249
+ Yes, you can use generated direct link inside particular gallery settings
250
 
251
  = How to customize border of the gallery thumbnails? =
252
 
253
  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
254
 
255
+ = Do you have some limits for images amount in gallery? =
256
 
257
+ No, we don't have any limits for amount of the images in gallery
258
 
259
  = How to hide titles of the gallery image in lightbox ? =
260
 
264
 
265
  No, we don't have any limits for image size in our gallery.
266
 
267
+ = How to enable lazy load in gallery options? =
268
 
269
+ 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
270
 
271
+ = How to make shadow for the gallery thumbnails? =
272
 
273
+ 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
274
 
275
  = Is it possible to have different settings for hover and static interface elements? =
276
 
277
  Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
278
 
279
+ = Where specify description of the gallery images? =
280
+
281
+ 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
282
+
283
  = How to define size of the gallery images thumbnails? =
284
 
285
  Our gallery is fully responsive and gallery thumbnails size depend of a lot of factors. Gallery calculate thumbnails automatically depend of the general gallery size and gallery layout settings. First of all you can define ratio values for gallery thumbnails. Size of the thumbnails could be selected from standard pre-defined wordpress sizes: thumbnail, medium, large, full
286
 
287
+ = How to set description text below image in the lightbox? =
288
 
289
+ 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.
290
+
291
+ = How to change spacing between thumbnails? =
292
+
293
+ In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
294
 
295
  = How to customize gallery layouts for different screen resolutions? =
296
 
300
 
301
  In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
302
 
303
+ = How to change color of the gallery interface elements? =
304
 
305
+ 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.
306
 
307
  = How to define custom link for some gallery images? =
308
 
309
  Every gallery image have additional fields where you can define custom link, title, description. All this options you can find in gallery images manager, inside general gallery settings
310
 
311
+ = How to make gallery thumbnails with rounded corners? =
312
+
313
+ In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
314
+
315
  = How to use multi-category functionality of the gallery? =
316
 
317
  In our gallery we implemented multi-categories structure. Every gallery category could have child and parent gallery, which you can manually define in gallery settings
318
 
319
+ = Which parameters I can change for the gallery thumbnails borders and shadows? =
320
+
321
+ You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
322
+
323
  = How to change ordering of the gallery images? =
324
 
325
  When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
326
 
327
+ = How to load more function work? =
328
 
329
+ 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
330
 
331
  = Is it possible to use HTML in image description ? =
332
 
336
 
337
  Yes, in gallery options you can turn on/off border option
338
 
 
 
 
 
339
  = How to change font color of the gallery image description text? =
340
 
341
  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
342
 
343
+ = How to define custom ALT for gallery image? =
344
+
345
+ When you open gallery images manager you can define alt for every gallery image there
346
+
347
+ = Where to change settings of the image of the gallery? =
348
+
349
+ Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
350
+
351
  = Is it possible to customize gallery image caption ? =
352
 
353
  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
364
 
365
  In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
366
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  = Do you have fade effect for the thumbnails hover? =
368
 
369
  Yes, gallery have fade hover effect
372
 
373
  When you open gallery images manager you'll find there image edit mode where you can crop source image
374
 
375
+ = How to rotate uploaded gallery image? =
376
+
377
+ When you open gallery images manager you'll find there image edit mode where you can rotate source image
378
+
379
  = How to change color of the gallery thumbnails border? =
380
 
381
  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
384
 
385
  Gallery have 15 hover animation effects, which could be combined with additional custom options
386
 
 
 
 
 
387
  = How to add text before and after gallery? =
388
 
389
  In gallery settings you can find before/after text gallery field. This fields support HTML tags.
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 going to help you to build in some gallery images elements into hover
394
 
395
+ = How to change font size of the gallery image description text? =
396
+
397
+ In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change size of the text
398
+
399
  = Is it possible to change transparency of the hover shutter? =
400
 
401
  Yes, it's possible to change transparency in gallery settings
404
 
405
  Gallery menu have multiply configuration options. Some of the options changing color of the buttons, some of them changing style of the buttons, which makes buttons for example 3d or with rounded corners
406
 
407
+ = How to change style of the gallery thumbnails border? =
408
+
409
+ When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border style. You can select one value from pre-defined list
410
+
411
  = How to change width of the gallery thumbnails border? =
412
 
413
  When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border width in pixels.
416
 
417
  If you wish to make section with gallery without spacing between thumbnails you need just set horizontal and vertical spacing to 0 in gallery thumbnails view options
418
 
 
 
 
 
419
  = Do you have Polaroid style in your gallery? =
420
 
421
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
436
 
437
  In gallery hover settings we implemented full set of configuration settings of the buttons. You can change icon, style size, colors for static and hovered buttons. You can select icon with build in wizard
438
 
 
 
 
 
439
  = 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? =
440
 
441
  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.
442
 
443
+ = How to change icon on gallery thumbnail button? =
444
+
445
+ 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
446
+
447
  = Which style parameters I can change for the hover button icon? =
448
 
449
  You can select border color, background color and color of the icon, size of the icon
574
 
575
  == Changelog ==
576
 
577
+ = 1.5.3 =
578
+ * New option for post generator
579
+ * Added preview button in post dialog wizard
580
+
581
  = 1.5.2 =
582
  * New option for post generator
583
  * Possible define custom slug for new gallery post
783
 
784
  == Upgrade Notice ==
785
 
786
+ = 1.5.3 =
787
+ New option for post generator, added preview button in post dialog wizard
788
+
789
  = 1.5.2 =
790
  New option for post generator, possible define custom slug for new gallery post
791
 
robogallery.php CHANGED
@@ -8,7 +8,7 @@
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
- * Version: 1.5.2
12
  * Author: RoboSoft (c)
13
  * Author URI: http://robosoft.co/robogallery
14
  * License: GPL-2.0+
@@ -19,9 +19,9 @@
19
 
20
  if ( ! defined( 'WPINC' ) ) die;
21
  define("ROBO_GALLERY", 1);
22
- define("ROBO_GALLERY_VERSION", '1.5.2');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
- define("ROBO_GALLERY_SPECIAL", 0);
25
 
26
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
27
  function rbs_gallery_load_textdomain() {
8
  * Plugin Name: Robo Gallery
9
  * Plugin URI: http://robosoft.co/robogallery
10
  * Description: A responsive, easy and elegant way to show gallery.
11
+ * Version: 1.5.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.5.3');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
+ define("ROBO_GALLERY_SPECIAL", 1);
25
 
26
  add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
27
  function rbs_gallery_load_textdomain() {