Gallery – Photo Gallery and Images Gallery - Version 1.8.3

Version Description

  • Added new statistics section in gallery
  • Published galleries amount value
Download this release

Release Info

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

Code changes from version 1.8.2 to 1.8.3

includes/extensions/stats/index.html ADDED
File without changes
includes/extensions/stats/js/index.html ADDED
File without changes
includes/extensions/stats/js/script.js ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Robo Gallery
3
+ * Version: 1.0
4
+ * By Robosoft
5
+ *
6
+ * Contact: http://robosoft.co
7
+ * Created: 2015
8
+ * Licensed under the GPLv2 license - http://opensource.org/licenses/gpl-2.0.php
9
+ *
10
+ * Copyright (c) 2014-2015, Robosoft. All rights reserved.
11
+ * Available only in http://robosoft.co/
12
+ */
13
+
14
+ jQuery(document).ready( function($){
15
+ jQuery("<a href='edit.php?post_type=robo_gallery_table&page=robo-gallery-stats' id='rbs_stats_button' class='page-title-action'>Statistics Gallery</a>").appendTo(jQuery(".wp-admin.edit-php.post-type-robo_gallery_table .wrap h1")[0]);
16
+ });
includes/extensions/stats/stats.class.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ class ROBO_GALLERY_STATS
16
+ {
17
+ /**
18
+ * Post type
19
+ *
20
+ * @var string
21
+ */
22
+ protected $postType;
23
+
24
+ /**
25
+ * Assets directory uri
26
+ *
27
+ * @var string
28
+ */
29
+ protected $assetsUri;
30
+
31
+
32
+ /**
33
+ * @constructor
34
+ * @param string $postType
35
+ * @param array $postTypeParams
36
+ */
37
+ public function __construct($postType)
38
+ {
39
+ $this->postType = $postType;
40
+ $this->assetsUri = plugin_dir_url(__FILE__);
41
+ add_action('admin_enqueue_scripts', array($this, 'enqueueScripts'));
42
+ }
43
+
44
+ public function enqueueScripts()
45
+ {
46
+ if (
47
+ rbs_gallery_get_current_post_type() == ROBO_GALLERY_TYPE_POST &&
48
+ rbs_gallery_is_edit_page('list')
49
+ ) {
50
+ wp_enqueue_script(
51
+ 'robo-gallery-stats-js',
52
+ $this->assetsUri . '/js/script.js',
53
+ array(),
54
+ false,
55
+ true
56
+ );
57
+ }
58
+ }
59
+ }
includes/extensions/stats/stats.form.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Robo Gallery
4
+ * Version: 1.2
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
+ ?>
16
+ <div class="wrap">
17
+ <h1 class="rbs-stats">
18
+ <?php _e('Robo Gallery Statistics', 'rbs_gallery'); ?>
19
+ </h1>
20
+ <br>
21
+
22
+ <?php
23
+
24
+ if(!function_exists('rbs_stats_tabs')){
25
+ function rbs_stats_tabs( $current = 'gallery' ) {
26
+ $tabs = array(
27
+ 'gallery' => __('Gallery Statistics', 'rbs_gallery'),
28
+ 'export' => __('Images Statistics', 'rbs_gallery')
29
+ );
30
+ echo '<h2 class="nav-tab-wrapper">';
31
+ foreach( $tabs as $tab => $name ){
32
+ $class = ( $tab == $current ) ? ' nav-tab-active' : '';
33
+ echo "<a class='nav-tab$class' href='edit.php?post_type=robo_gallery_table&page=robo-gallery-stats&tab=$tab'>$name</a>";
34
+ }
35
+ echo '</h2>';
36
+ }
37
+ }
38
+ $tab = 'gallery';
39
+ //if ( isset( $_GET['tab'] ) ) $tab = $_GET['tab'];
40
+ //if ( isset( $_POST['tab'] ) ) $tab = $_POST['tab'];
41
+ //rbs_stats_tabs( $tab);
42
+
43
+ $today = date("Y_j_n");
44
+ $countPosts = wp_count_posts(ROBO_GALLERY_TYPE_POST);
45
+
46
+ //var_dump($countPosts);
47
+
48
+ switch ($tab) {
49
+ case 'gallery':
50
+ ?>
51
+ <table class="form-table">
52
+ <tbody>
53
+ <tr>
54
+ <th scope="row">
55
+ <label ><?php _e('Published Galleries', 'rbs_gallery'); ?></label>
56
+ </th>
57
+ <td>
58
+ <p><?php echo $countPosts->publish ; ?></p>
59
+ </td>
60
+ </tr>
61
+
62
+ </tbody>
63
+ </table>
64
+ <?php
65
+ break;
66
+
67
+ default:
68
+ case 'images':
69
+ ?>
70
+ <?php
71
+ break;
72
+
73
+ case 'import':
74
+
75
+ } ?>
76
+ </div>
77
+ <?php
includes/extensions/stats/stats.init.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ if(!function_exists('rbs_gallery_stats_init')){
16
+ function rbs_gallery_stats_init(){
17
+ rbs_gallery_include('stats.class.php', plugin_dir_path( __FILE__ ) );
18
+ new ROBO_GALLERY_STATS( ROBO_GALLERY_TYPE_POST );
19
+ }
20
+ add_action( 'init', 'rbs_gallery_stats_init' );
21
+ }
22
+
23
+ if(!function_exists('robo_gallery_stats_submenu_page')){
24
+ add_action('admin_menu', 'robo_gallery_stats_submenu_page');
25
+ function robo_gallery_stats_submenu_page() {
26
+ add_submenu_page( 'edit.php?post_type=robo_gallery_table', 'Statistics', 'Statistics', 'manage_options', 'robo-gallery-stats', 'robo_gallery_stats_submenu_page_render' );
27
+ }
28
+ function robo_gallery_stats_submenu_page_render(){
29
+ rbs_gallery_include('stats.form.php', plugin_dir_path( __FILE__ ));
30
+ }
31
+ }
includes/rbs_gallery_init.php CHANGED
@@ -77,7 +77,7 @@ function create_post_type_robo_gallery() {
77
  'public' => true,
78
  'has_archive' => false,
79
  'hierarchical' => true,
80
- 'supports' => array( 'title', 'page-attributes', 'comments'),
81
  'menu_icon' => 'dashicons-format-gallery',
82
  ));
83
  /* to-do options */
@@ -148,5 +148,6 @@ rbs_gallery_include('rbs_create_post_ajax.php', ROBO_GALLERY_EXTENSIONS_PATH);
148
 
149
  /* Init function */
150
 
151
-
152
- rbs_gallery_include('backup\backup.init.php', ROBO_GALLERY_EXTENSIONS_PATH);
 
77
  'public' => true,
78
  'has_archive' => false,
79
  'hierarchical' => true,
80
+ 'supports' => array( 'title', 'page-attributes', 'comments'), //
81
  'menu_icon' => 'dashicons-format-gallery',
82
  ));
83
  /* to-do options */
148
 
149
  /* Init function */
150
 
151
+ rbs_gallery_include('backup\backup.init.php', ROBO_GALLERY_EXTENSIONS_PATH);
152
+ //rbs_gallery_include('category\category.init.php', ROBO_GALLERY_EXTENSIONS_PATH);
153
+ rbs_gallery_include('stats\stats.init.php', ROBO_GALLERY_EXTENSIONS_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.4
7
- Stable tag: 1.8.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -202,38 +202,14 @@ In our gallery we implemented multi-categories structure. Every gallery category
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
  = Is it possible to use HTML in image description ? =
210
 
211
  Yes, you can use HTML tags inside gallery image description field
212
 
213
- = Do you have some limit for images size in gallery? =
214
-
215
- No, we don't have any limits for image size in our gallery.
216
-
217
- = What can I do if some gallery interface elements in backend do not work properly? =
218
-
219
- 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.
220
-
221
- = How to make shadow for the gallery thumbnails? =
222
-
223
- 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
224
-
225
- = How to make gallery thumbnails with rounded corners? =
226
-
227
- In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
228
-
229
- = How to define video for some gallery image? =
230
-
231
- 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
232
-
233
- = What can I do if some gallery interface elements in backend do not work properly? =
234
-
235
- 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.
236
-
237
  = How to define custom link for some gallery images? =
238
 
239
  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
@@ -242,33 +218,25 @@ Every gallery image have additional fields where you can define custom link, tit
242
 
243
  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
244
 
245
- = How to define custom link for some gallery images? =
246
-
247
- 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
248
-
249
  = How to define video for some gallery image? =
250
 
251
  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
252
 
253
- = How to change quality of the gallery thumbnails? =
254
-
255
- Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
256
-
257
- = How to change font size of the gallery image caption? =
258
 
259
- In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
260
 
261
  = How to hide titles of the gallery image in lightbox ? =
262
 
263
  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.
264
 
265
- = How to define custom hover effect for some gallery thumbnail? =
266
 
267
- 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.
268
 
269
- = Where specify description of the gallery images? =
270
 
271
- 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
272
 
273
  = Is it possible to turn off border of the gallery thumbnails? =
274
 
@@ -278,38 +246,46 @@ Yes, in gallery options you can turn on/off border option
278
 
279
  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.
280
 
281
- = How to change color of the gallery thumbnails border? =
282
 
283
- 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
284
 
285
- = How to change font color of the gallery image description text? =
286
 
287
- 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?
288
 
289
- = How to define size of the gallery images thumbnails? =
290
 
291
- 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
292
 
293
- = Where it's possible to define vertical and horizontal paddings? =
294
 
295
- In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
296
 
297
- = How to load more function work? =
298
 
299
- 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
300
 
301
- = How to change width of the gallery thumbnails border? =
302
 
303
- 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.
304
 
305
- = Is it possible to customize gallery image caption ? =
306
 
307
- 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
308
 
309
  = How to change color of the gallery interface elements? =
310
 
311
  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.
312
 
 
 
 
 
 
 
 
 
313
  = How to upload images to 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.
@@ -322,17 +298,29 @@ Yes, you can use generated direct link inside particular gallery settings
322
 
323
  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
324
 
325
- = Do you have fade effect for the thumbnails hover? =
326
 
327
- Yes, gallery have fade hover effect
328
 
329
- = Do you have some conflict in gallery back end? =
330
 
331
- 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.
332
 
333
- = How to change ordering of the gallery images? =
334
 
335
- When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
 
 
 
 
 
 
 
 
 
 
 
 
336
 
337
  = How to customize border of the gallery thumbnails? =
338
 
@@ -342,6 +330,18 @@ In gallery settings you can find general settings section where you can turn on/
342
 
343
  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
344
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  = How to enable lazy load in gallery options? =
346
 
347
  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
@@ -442,6 +442,10 @@ When you enable border in gallery settings you will see multiply options for cus
442
 
443
  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
444
 
 
 
 
 
445
  = How many thumbnails hover effects gallery has? =
446
 
447
  Gallery have 15 hover animation effects, which could be combined with additional custom options
@@ -454,10 +458,6 @@ In build library of the icons in gallery you can find 533 icons
454
 
455
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
456
 
457
- = Is it possible to change transparency of the gallery lightbox background ? =
458
-
459
- Yes, you can change gallery lightbox background transparency in gallery settings. Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block. When you open color selector for the gallery lightbox background you'll see there additional slider option for transparency value.
460
-
461
  = Which tags build in shutter of gallery hover template customization? =
462
 
463
  For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
@@ -470,6 +470,14 @@ When you open gallery settings you can see there hover options section where we
470
 
471
  Yes, all labels of the front end interface of the gallery is customizable. Label of the load more button could be edit in admin section
472
 
 
 
 
 
 
 
 
 
473
  = How to turn off social buttons in gallery lightbox? =
474
 
475
  When you open gallery settings you can find there gallery lightbox settings block, where you can turn off social buttons in gallery lightbox on the front end.
@@ -482,14 +490,6 @@ Yes, you can change background color of the gallery lightbox. When you open gall
482
 
483
  Our gallery do not require any special permissions for installation of the gallery or during upload of the gallery images. All requirements are basic: our gallery have the same requirements as Wordpress have.
484
 
485
- = How many buttons with icons do you have in gallery? =
486
-
487
- In our gallery we have 2 buttons for every gallery thumbnail. Zoom button and link button.
488
-
489
- = How to delete title, author, date above the gallery of the gallery post? =
490
-
491
- Actually settings of all this main elements of the gallery post is inherited from the the general Wordpress posts settings. So you can turn in off the same way as it's manage in general posts, not only gallery posts.
492
-
493
  = Where to change font color of the gallery lightbox text? =
494
 
495
  When you open gallery settings you can find there gallery lightbox settings block, where you can gallery lightbox text color using color selector.
@@ -540,18 +540,14 @@ In gallery settings we create separate section where you can find create new pos
540
  = If some admin section interface elements do not work properly =
541
 
542
  Try to change gallery compatibility settings. When you open gallery menu on the left side you'll see gallery Settings section. When you open this settings you'll be able to switch between interface element styles, which going to help you to avoid some conflicts.
 
 
 
 
543
 
544
  = Do you have some problems with backend? =
545
 
546
  Try to change gallery compatibility settings. When you open gallery menu on the left side you'll see gallery Settings section. When you open this settings you'll be able to the select ajax library mode and check results after that.
547
-
548
- = How to save pre-configured galleries when you install new version of the gallery? =
549
-
550
- When you install new version of the gallery all settings of the created galleries will be saved in database automatically. Even if you uninstall old version of the gallery and install new copy of the gallery settings of the old gallery version will be saved in database.
551
-
552
- = Do you have some problems with installation ?=
553
-
554
- Feel free to ask our support help you to setup gallery for you. If you have some error messages it's could be some conflicts with another plugins. Contact our support team we'll help you to fix it really fast.
555
 
556
  = Do you have some gallery setup video guide? =
557
 
@@ -564,14 +560,18 @@ All details of the gallery , including key features description you can find [Ga
564
  = Do you have some limits for images amount in your gallery? =
565
 
566
  No, we don't have any limits for gallery images amount. You can upload as much images into your gallery as you need.
 
 
567
 
568
- = Why description of the gallery images do not show? =
569
 
570
- If you sure that you defined gallery images description but you can't see it on the front end please check few following things: In our gallery images have two descriptions fields: caption and description. At the same time in hover settings you can select which exactly text do you wish to see on hovered gallery thumbnails, namely image caption or image description.
571
 
572
- = Why images do not show on gallery after upload? =
573
 
574
- There's few reasons of the such problem in gallery. In the case if you already upload images into gallery and images just do not show in gallery on the front end from begin you need to check folder permissions or contact our support to get fast reply
 
 
575
 
576
  = How would I be able to change the thumbnail image to something different than the main gallery image? =
577
 
@@ -588,6 +588,10 @@ If any problem occurs, please contact us.
588
 
589
  == Changelog ==
590
 
 
 
 
 
591
  = 1.8.2 =
592
  * Updated backup section functionality
593
  * Maximum POST size information section
@@ -942,6 +946,9 @@ If any problem occurs, please contact us.
942
 
943
  == Upgrade Notice ==
944
 
 
 
 
945
  = 1.8.2 =
946
  Updated backup section functionality, maximum POST size information section
947
 
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.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
202
 
203
  Yes, you can insert gallery into post with shortcode tag
204
 
205
+ = How to define custom link for some gallery images? =
206
 
207
+ 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
208
 
209
  = Is it possible to use HTML in image description ? =
210
 
211
  Yes, you can use HTML tags inside gallery image description field
212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  = How to define custom link for some gallery images? =
214
 
215
  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
218
 
219
  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
220
 
 
 
 
 
221
  = How to define video for some gallery image? =
222
 
223
  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
224
 
225
+ = Do you have some limits for images amount in gallery? =
 
 
 
 
226
 
227
+ No, we don't have any limits for amount of the images in gallery
228
 
229
  = How to hide titles of the gallery image in lightbox ? =
230
 
231
  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.
232
 
233
+ = Do you have some limit for images size in gallery? =
234
 
235
+ No, we don't have any limits for image size in our gallery.
236
 
237
+ = How to change quality of the gallery thumbnails? =
238
 
239
+ Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
240
 
241
  = Is it possible to turn off border of the gallery thumbnails? =
242
 
246
 
247
  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.
248
 
249
+ = How to make gallery thumbnails with rounded corners? =
250
 
251
+ In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
252
 
253
+ = How to define video for some gallery image? =
254
 
255
+ 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
256
 
257
+ = How to make shadow for the gallery thumbnails? =
258
 
259
+ 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
260
 
261
+ = How to define custom hover effect for some gallery thumbnail? =
262
 
263
+ 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.
264
 
265
+ = How to change font color of the gallery image description text? =
266
 
267
+ 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?
268
 
269
+ = What can I do if some gallery interface elements in backend do not work properly? =
270
 
271
+ 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.
272
 
273
+ = Where specify description of the gallery images? =
274
 
275
+ 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
276
 
277
  = How to change color of the gallery interface elements? =
278
 
279
  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.
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
+ = How to change font size of the gallery image caption? =
286
+
287
+ In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
288
+
289
  = How to upload images to the gallery? =
290
 
291
  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.
298
 
299
  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
300
 
301
+ = How to change color of the gallery thumbnails border? =
302
 
303
+ 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
304
 
305
+ = Is it possible to customize gallery image caption ? =
306
 
307
+ 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
308
 
309
+ = How to change width of the gallery thumbnails border? =
310
 
311
+ 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.
312
+
313
+ = How to define size of the gallery images thumbnails? =
314
+
315
+ 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
316
+
317
+ = How to load more function work? =
318
+
319
+ 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
320
+
321
+ = Where it's possible to define vertical and horizontal paddings? =
322
+
323
+ In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
324
 
325
  = How to customize border of the gallery thumbnails? =
326
 
330
 
331
  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
332
 
333
+ = Do you have fade effect for the thumbnails hover? =
334
+
335
+ Yes, gallery have fade hover effect
336
+
337
+ = Do you have some conflict in gallery back end? =
338
+
339
+ 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.
340
+
341
+ = How to change ordering of the gallery images? =
342
+
343
+ When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
344
+
345
  = How to enable lazy load in gallery options? =
346
 
347
  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
442
 
443
  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
444
 
445
+ = Is it possible to change transparency of the gallery lightbox background ? =
446
+
447
+ Yes, you can change gallery lightbox background transparency in gallery settings. Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block. When you open color selector for the gallery lightbox background you'll see there additional slider option for transparency value.
448
+
449
  = How many thumbnails hover effects gallery has? =
450
 
451
  Gallery have 15 hover animation effects, which could be combined with additional custom options
458
 
459
  In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
460
 
 
 
 
 
461
  = Which tags build in shutter of gallery hover template customization? =
462
 
463
  For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
470
 
471
  Yes, all labels of the front end interface of the gallery is customizable. Label of the load more button could be edit in admin section
472
 
473
+ = How many buttons with icons do you have in gallery? =
474
+
475
+ In our gallery we have 2 buttons for every gallery thumbnail. Zoom button and link button.
476
+
477
+ = How to delete title, author, date above the gallery of the gallery post? =
478
+
479
+ Actually settings of all this main elements of the gallery post is inherited from the the general Wordpress posts settings. So you can turn in off the same way as it's manage in general posts, not only gallery posts.
480
+
481
  = How to turn off social buttons in gallery lightbox? =
482
 
483
  When you open gallery settings you can find there gallery lightbox settings block, where you can turn off social buttons in gallery lightbox on the front end.
490
 
491
  Our gallery do not require any special permissions for installation of the gallery or during upload of the gallery images. All requirements are basic: our gallery have the same requirements as Wordpress have.
492
 
 
 
 
 
 
 
 
 
493
  = Where to change font color of the gallery lightbox text? =
494
 
495
  When you open gallery settings you can find there gallery lightbox settings block, where you can gallery lightbox text color using color selector.
540
  = If some admin section interface elements do not work properly =
541
 
542
  Try to change gallery compatibility settings. When you open gallery menu on the left side you'll see gallery Settings section. When you open this settings you'll be able to switch between interface element styles, which going to help you to avoid some conflicts.
543
+
544
+ = Why images do not show on gallery after upload? =
545
+
546
+ There's few reasons of the such problem in gallery. In the case if you already upload images into gallery and images just do not show in gallery on the front end from begin you need to check folder permissions or contact our support to get fast reply
547
 
548
  = Do you have some problems with backend? =
549
 
550
  Try to change gallery compatibility settings. When you open gallery menu on the left side you'll see gallery Settings section. When you open this settings you'll be able to the select ajax library mode and check results after that.
 
 
 
 
 
 
 
 
551
 
552
  = Do you have some gallery setup video guide? =
553
 
560
  = Do you have some limits for images amount in your gallery? =
561
 
562
  No, we don't have any limits for gallery images amount. You can upload as much images into your gallery as you need.
563
+
564
+ = How to save pre-configured galleries when you install new version of the gallery? =
565
 
566
+ When you install new version of the gallery all settings of the created galleries will be saved in database automatically. Even if you uninstall old version of the gallery and install new copy of the gallery settings of the old gallery version will be saved in database.
567
 
568
+ = Do you have some problems with installation ?=
569
 
570
+ Feel free to ask our support help you to setup gallery for you. If you have some error messages it's could be some conflicts with another plugins. Contact our support team we'll help you to fix it really fast.
571
 
572
+ = Why description of the gallery images do not show? =
573
+
574
+ If you sure that you defined gallery images description but you can't see it on the front end please check few following things: In our gallery images have two descriptions fields: caption and description. At the same time in hover settings you can select which exactly text do you wish to see on hovered gallery thumbnails, namely image caption or image description.
575
 
576
  = How would I be able to change the thumbnail image to something different than the main gallery image? =
577
 
588
 
589
  == Changelog ==
590
 
591
+ = 1.8.3 =
592
+ * Added new statistics section in gallery
593
+ * Published galleries amount value
594
+
595
  = 1.8.2 =
596
  * Updated backup section functionality
597
  * Maximum POST size information section
946
 
947
  == Upgrade Notice ==
948
 
949
+ = 1.8.3 =
950
+ Added new statistics section in gallery, published galleries amount value
951
+
952
  = 1.8.2 =
953
  Updated backup section functionality, maximum POST size information section
954
 
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.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.8.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.8.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.8.3');
23
  define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
24
  define("ROBO_GALLERY_SPECIAL", 0);
25