Version Description
- Added new gallery views field in gallery listing section
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 1.8.8 |
Comparing to | |
See all releases |
Code changes from version 1.8.7 to 1.8.8
- css/admin/list.css +1 -1
- includes/options/rbs_gallery_options_tools.php +1 -1
- includes/rbs_gallery_list.php +8 -1
- readme.txt +67 -61
- robogallery.php +2 -2
css/admin/list.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
/*
|
1 |
+
/*
|
includes/options/rbs_gallery_options_tools.php
CHANGED
@@ -39,7 +39,7 @@ if(isset($_GET['post'])){
|
|
39 |
.'</button>'
|
40 |
.'<p class="rbs_desc">'.__('Here you can create and customize new post with gallery inside it','rbs_gallery').'</p> '
|
41 |
|
42 |
-
.'<p><span class="glyphicon glyphicon-eye-open"></span> '.__('Gallery Views','rbs_gallery').': <strong>'.get_post_meta( (int)$_GET['post'], 'gallery_views_count', true).'</strong></p>'
|
43 |
|
44 |
.'</div> '
|
45 |
,
|
39 |
.'</button>'
|
40 |
.'<p class="rbs_desc">'.__('Here you can create and customize new post with gallery inside it','rbs_gallery').'</p> '
|
41 |
|
42 |
+
.'<p><span class="glyphicon glyphicon-eye-open"></span> '.__('Gallery Views','rbs_gallery').': <strong>'.(int) get_post_meta( (int)$_GET['post'], 'gallery_views_count', true).'</strong></p>'
|
43 |
|
44 |
.'</div> '
|
45 |
,
|
includes/rbs_gallery_list.php
CHANGED
@@ -45,13 +45,20 @@ if(!function_exists('rbs_custom_columns')){
|
|
45 |
$shortcode = '<span>[robo-gallery id="'.$post->ID.'"]</span>';
|
46 |
echo $shortcode;
|
47 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
}
|
49 |
}
|
50 |
add_action( 'manage_'.ROBO_GALLERY_TYPE_POST.'_posts_custom_column' , 'rbs_custom_columns', 10, 2 );
|
51 |
}
|
52 |
|
53 |
if(!function_exists('add_rbs_table_columns')){
|
54 |
-
function add_rbs_table_columns($columns) { return array_merge($columns, array('rbs_gallery' => __('Shortcode')
|
55 |
add_filter('manage_'.ROBO_GALLERY_TYPE_POST.'_posts_columns' , 'add_rbs_table_columns');
|
56 |
}
|
57 |
|
45 |
$shortcode = '<span>[robo-gallery id="'.$post->ID.'"]</span>';
|
46 |
echo $shortcode;
|
47 |
break;
|
48 |
+
|
49 |
+
case 'rbs_gallery_views' :
|
50 |
+
global $post;
|
51 |
+
$view = '';
|
52 |
+
$view = (int) get_post_meta( $post->ID, 'gallery_views_count', true);
|
53 |
+
echo $view;
|
54 |
+
break;
|
55 |
}
|
56 |
}
|
57 |
add_action( 'manage_'.ROBO_GALLERY_TYPE_POST.'_posts_custom_column' , 'rbs_custom_columns', 10, 2 );
|
58 |
}
|
59 |
|
60 |
if(!function_exists('add_rbs_table_columns')){
|
61 |
+
function add_rbs_table_columns($columns) { return array_merge($columns, array( 'rbs_gallery_views' => __('Views'), 'rbs_gallery' => __('Shortcode') )); }
|
62 |
add_filter('manage_'.ROBO_GALLERY_TYPE_POST.'_posts_columns' , 'add_rbs_table_columns');
|
63 |
}
|
64 |
|
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.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -190,126 +190,134 @@ You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
|
190 |
|
191 |
No, we don't have any limits for amount of the images in gallery
|
192 |
|
193 |
-
= How to customize border of the gallery thumbnails? =
|
194 |
-
|
195 |
-
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
|
196 |
-
|
197 |
-
= Is it possible to turn off border of the gallery thumbnails? =
|
198 |
-
|
199 |
-
Yes, in gallery options you can turn on/off border option
|
200 |
-
|
201 |
-
= How to use multi-category functionality of the gallery? =
|
202 |
-
|
203 |
-
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
|
204 |
-
|
205 |
= How to change font size of the gallery image caption? =
|
206 |
|
207 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
208 |
|
209 |
-
=
|
|
|
|
|
210 |
|
211 |
-
No, we don't have any limits for image size in our gallery.
|
212 |
-
|
213 |
= How to change font color of the gallery image description text? =
|
214 |
|
215 |
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
|
216 |
the text?
|
217 |
|
218 |
-
=
|
219 |
|
220 |
-
|
221 |
|
222 |
-
=
|
223 |
|
224 |
-
|
225 |
|
226 |
= How to customize border of the gallery thumbnails? =
|
227 |
|
228 |
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
|
229 |
|
230 |
-
=
|
231 |
|
232 |
-
|
|
|
|
|
233 |
|
234 |
-
|
235 |
|
236 |
-
|
237 |
|
238 |
-
|
239 |
|
240 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
|
|
|
|
|
|
|
|
|
242 |
= Is it possible create gallery in Wordpress post with Gallery? =
|
243 |
|
244 |
Yes, you can insert gallery into post with shortcode tag
|
245 |
-
|
246 |
-
= How to define video for some gallery image? =
|
247 |
|
248 |
-
|
249 |
|
250 |
-
|
251 |
|
252 |
-
|
253 |
|
254 |
-
|
255 |
|
256 |
-
|
|
|
|
|
257 |
|
258 |
= How to change quality of the gallery thumbnails? =
|
259 |
|
260 |
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
261 |
|
262 |
-
=
|
263 |
|
264 |
-
|
265 |
|
266 |
-
= How to
|
267 |
|
268 |
-
|
269 |
|
270 |
-
=
|
271 |
|
272 |
-
In gallery settings
|
273 |
|
274 |
-
=
|
275 |
|
276 |
-
|
277 |
|
278 |
-
=
|
279 |
|
280 |
-
|
281 |
|
282 |
-
=
|
283 |
|
284 |
-
|
285 |
|
286 |
-
= How to
|
287 |
|
288 |
-
|
289 |
|
290 |
-
=
|
291 |
|
292 |
-
|
293 |
|
294 |
= How to define video for some gallery image? =
|
295 |
|
296 |
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
|
297 |
|
|
|
|
|
|
|
|
|
298 |
= How to change width of the gallery thumbnails border? =
|
299 |
|
300 |
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.
|
301 |
|
302 |
-
=
|
303 |
|
304 |
-
|
305 |
|
306 |
= How to define custom link for some gallery images? =
|
307 |
|
308 |
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
|
309 |
|
310 |
-
=
|
311 |
|
312 |
-
When you
|
|
|
|
|
|
|
|
|
313 |
|
314 |
= How to define size of the gallery images thumbnails? =
|
315 |
|
@@ -319,14 +327,6 @@ Our gallery is fully responsive and gallery thumbnails size depend of a lot of f
|
|
319 |
|
320 |
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.
|
321 |
|
322 |
-
= Where specify description of the gallery images? =
|
323 |
-
|
324 |
-
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
|
325 |
-
|
326 |
-
= Do you have some conflict in gallery back end? =
|
327 |
-
|
328 |
-
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.
|
329 |
-
|
330 |
= Is it possible to create direct link on the front end to the gallery? =
|
331 |
|
332 |
Yes, you can use generated direct link inside particular gallery settings
|
@@ -589,6 +589,9 @@ If any problem occurs, please contact us.
|
|
589 |
|
590 |
== Changelog ==
|
591 |
|
|
|
|
|
|
|
592 |
= 1.8.7 =
|
593 |
* Added new statistics value in gallery
|
594 |
* New gallery view value
|
@@ -963,6 +966,9 @@ If any problem occurs, please contact us.
|
|
963 |
|
964 |
== Upgrade Notice ==
|
965 |
|
|
|
|
|
|
|
966 |
= 1.8.7 =
|
967 |
Added new statistics value in gallery, new gallery view value
|
968 |
|
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.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
190 |
|
191 |
No, we don't have any limits for amount of the images in gallery
|
192 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
= How to change font size of the gallery image caption? =
|
194 |
|
195 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
196 |
|
197 |
+
= How to make shadow for the gallery thumbnails? =
|
198 |
+
|
199 |
+
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
|
200 |
|
|
|
|
|
201 |
= How to change font color of the gallery image description text? =
|
202 |
|
203 |
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
|
204 |
the text?
|
205 |
|
206 |
+
= Is it possible to turn off border of the gallery thumbnails? =
|
207 |
|
208 |
+
Yes, in gallery options you can turn on/off border option
|
209 |
|
210 |
+
= How to customize border of the gallery thumbnails? =
|
211 |
|
212 |
+
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
|
213 |
|
214 |
= How to customize border of the gallery thumbnails? =
|
215 |
|
216 |
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
|
217 |
|
218 |
+
= Do you have some limit for images size in gallery? =
|
219 |
|
220 |
+
No, we don't have any limits for image size in our gallery.
|
221 |
+
|
222 |
+
= Is it possible to use HTML in image description ? =
|
223 |
|
224 |
+
Yes, you can use HTML tags inside gallery image description field
|
225 |
|
226 |
+
= How to hide titles of the gallery image in lightbox ? =
|
227 |
|
228 |
+
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.
|
229 |
|
230 |
+
= How to define video for some gallery image? =
|
231 |
+
|
232 |
+
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
|
233 |
+
|
234 |
+
= Do you have fade effect for the thumbnails hover? =
|
235 |
+
|
236 |
+
Yes, gallery have fade hover effect
|
237 |
|
238 |
+
= How to use multi-category functionality of the gallery? =
|
239 |
+
|
240 |
+
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
|
241 |
+
|
242 |
= Is it possible create gallery in Wordpress post with Gallery? =
|
243 |
|
244 |
Yes, you can insert gallery into post with shortcode tag
|
|
|
|
|
245 |
|
246 |
+
= How to make gallery thumbnails with rounded corners? =
|
247 |
|
248 |
+
In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
|
249 |
|
250 |
+
= How to define custom hover effect for some gallery thumbnail? =
|
251 |
|
252 |
+
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.
|
253 |
|
254 |
+
= How to define custom link for some gallery images? =
|
255 |
+
|
256 |
+
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
|
257 |
|
258 |
= How to change quality of the gallery thumbnails? =
|
259 |
|
260 |
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
261 |
|
262 |
+
= Is it possible to have different settings for hover and static interface elements? =
|
263 |
|
264 |
+
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
265 |
|
266 |
+
= How to change text below image in lightbox ? =
|
267 |
|
268 |
+
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.
|
269 |
|
270 |
+
= How to change amount of images loading on gallery page? =
|
271 |
|
272 |
+
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
|
273 |
|
274 |
+
= What can I do if some gallery interface elements in backend do not work properly? =
|
275 |
|
276 |
+
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.
|
277 |
|
278 |
+
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
279 |
|
280 |
+
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
281 |
|
282 |
+
= Is it possible to customize gallery image caption ? =
|
283 |
|
284 |
+
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
|
285 |
|
286 |
+
= How to generate shortcode for Wordpress page, post or widget? =
|
287 |
|
288 |
+
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
|
289 |
|
290 |
+
= What can I do if some gallery interface elements in backend do not work properly? =
|
291 |
|
292 |
+
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.
|
293 |
|
294 |
= How to define video for some gallery image? =
|
295 |
|
296 |
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
|
297 |
|
298 |
+
= How to change color of the gallery interface elements? =
|
299 |
+
|
300 |
+
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.
|
301 |
+
|
302 |
= How to change width of the gallery thumbnails border? =
|
303 |
|
304 |
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.
|
305 |
|
306 |
+
= How to insert gallery into Wordpress page or post? =
|
307 |
|
308 |
+
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
|
309 |
|
310 |
= How to define custom link for some gallery images? =
|
311 |
|
312 |
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
|
313 |
|
314 |
+
= Where specify description of the gallery images? =
|
315 |
|
316 |
+
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
|
317 |
+
|
318 |
+
= Do you have some conflict in gallery back end? =
|
319 |
+
|
320 |
+
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.
|
321 |
|
322 |
= How to define size of the gallery images thumbnails? =
|
323 |
|
327 |
|
328 |
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.
|
329 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
= Is it possible to create direct link on the front end to the gallery? =
|
331 |
|
332 |
Yes, you can use generated direct link inside particular gallery settings
|
589 |
|
590 |
== Changelog ==
|
591 |
|
592 |
+
= 1.8.8 =
|
593 |
+
* Added new gallery views field in gallery listing section
|
594 |
+
|
595 |
= 1.8.7 =
|
596 |
* Added new statistics value in gallery
|
597 |
* New gallery view value
|
966 |
|
967 |
== Upgrade Notice ==
|
968 |
|
969 |
+
= 1.8.8 =
|
970 |
+
Added new gallery views field in gallery listing section
|
971 |
+
|
972 |
= 1.8.7 =
|
973 |
Added new statistics value in gallery, new gallery view value
|
974 |
|
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.
|
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.
|
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.8
|
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.8');
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|