Version Description
- Added new gallery reset views option in gallery edit mode, in statistics block
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 1.8.9 |
Comparing to | |
See all releases |
Code changes from version 1.8.8 to 1.8.9
- css/admin/edit.css +1 -1
- includes/extensions/rbs_create_post_ajax.php +30 -5
- includes/options/rbs_gallery_options_tools.php +6 -4
- includes/rbs_gallery_list.php +10 -3
- js/admin/extensions/create_post.js +18 -0
- readme.txt +67 -61
- robogallery.php +2 -2
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_ajax.php
CHANGED
@@ -2,6 +2,7 @@
|
|
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(
|
@@ -27,14 +28,14 @@ if(!function_exists('rbs_ajax_create_article_form')){
|
|
27 |
'value_field' => 'term_id',
|
28 |
);
|
29 |
if( !isset($_POST['galleryid']) || !(int)$_POST['galleryid'] ){
|
30 |
-
echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong
|
31 |
return ;
|
32 |
} ;
|
33 |
|
34 |
$post_info = get_post( (int) $_POST['galleryid'] );
|
35 |
|
36 |
if( gettype($post_info)!='object' ) {
|
37 |
-
echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong
|
38 |
return ;
|
39 |
}
|
40 |
echo "<h3>".__('Add new post','rbs_gallery')."</h3>";
|
@@ -81,7 +82,7 @@ if(!function_exists('rbs_ajax_create_article')){
|
|
81 |
$post_info = get_post( $galleryid );
|
82 |
|
83 |
if( gettype($post_info)!='object' ) {
|
84 |
-
echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong
|
85 |
die();
|
86 |
}
|
87 |
|
@@ -147,11 +148,16 @@ if(!function_exists('rbs_ajax_posts_list')){
|
|
147 |
function rbs_ajax_posts_list(){
|
148 |
|
149 |
if( !isset($_POST['galleryid']) || !(int)$_POST['galleryid'] ){
|
150 |
-
echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong
|
151 |
return ;
|
152 |
} ;
|
153 |
$posts = get_post_meta( (int) $_POST['galleryid'], 'rbs_gallery_id' , true);
|
154 |
|
|
|
|
|
|
|
|
|
|
|
155 |
$posts = json_decode($posts, true);
|
156 |
echo '<table class="widefat importers striped">';
|
157 |
echo '<thead>
|
@@ -167,7 +173,7 @@ if(!function_exists('rbs_ajax_posts_list')){
|
|
167 |
$post_info = get_post( $posts[$i] );
|
168 |
//print_r($post_info);
|
169 |
if( gettype($post_info)!='object' ) {
|
170 |
-
echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong
|
171 |
continue ;
|
172 |
}
|
173 |
echo '<tr>
|
@@ -193,4 +199,23 @@ if(!function_exists('rbs_ajax_posts_list')){
|
|
193 |
echo '</table>';
|
194 |
die();
|
195 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
}
|
2 |
if ( ! defined( 'WPINC' ) ) die;
|
3 |
|
4 |
rbs_gallery_include('class.postcontroller.php', ROBO_GALLERY_EXTENSIONS_PATH);
|
5 |
+
|
6 |
if(!function_exists('rbs_ajax_create_article_form')){
|
7 |
function rbs_ajax_create_article_form(){
|
8 |
$args = array(
|
28 |
'value_field' => 'term_id',
|
29 |
);
|
30 |
if( !isset($_POST['galleryid']) || !(int)$_POST['galleryid'] ){
|
31 |
+
echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
|
32 |
return ;
|
33 |
} ;
|
34 |
|
35 |
$post_info = get_post( (int) $_POST['galleryid'] );
|
36 |
|
37 |
if( gettype($post_info)!='object' ) {
|
38 |
+
echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong>'.__('Incorrect gallery ID','rbs_gallery').'</p>';
|
39 |
return ;
|
40 |
}
|
41 |
echo "<h3>".__('Add new post','rbs_gallery')."</h3>";
|
82 |
$post_info = get_post( $galleryid );
|
83 |
|
84 |
if( gettype($post_info)!='object' ) {
|
85 |
+
echo '<p><strong>'.__('Post not created. Error: ','rbs_gallery').'</strong>empty gallery id</p>';
|
86 |
die();
|
87 |
}
|
88 |
|
148 |
function rbs_ajax_posts_list(){
|
149 |
|
150 |
if( !isset($_POST['galleryid']) || !(int)$_POST['galleryid'] ){
|
151 |
+
echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
|
152 |
return ;
|
153 |
} ;
|
154 |
$posts = get_post_meta( (int) $_POST['galleryid'], 'rbs_gallery_id' , true);
|
155 |
|
156 |
+
if(!count($posts)){
|
157 |
+
e_('No post','rbs_gallery');
|
158 |
+
die();
|
159 |
+
}
|
160 |
+
|
161 |
$posts = json_decode($posts, true);
|
162 |
echo '<table class="widefat importers striped">';
|
163 |
echo '<thead>
|
173 |
$post_info = get_post( $posts[$i] );
|
174 |
//print_r($post_info);
|
175 |
if( gettype($post_info)!='object' ) {
|
176 |
+
//echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong>'.__('Incorrect gallery ID','rbs_gallery').'</p>';
|
177 |
continue ;
|
178 |
}
|
179 |
echo '<tr>
|
199 |
echo '</table>';
|
200 |
die();
|
201 |
}
|
202 |
+
}
|
203 |
+
|
204 |
+
|
205 |
+
if(!function_exists('rbs_ajax_reset_views')){
|
206 |
+
function rbs_ajax_reset_views(){
|
207 |
+
|
208 |
+
if( !isset($_POST['galleryid']) || !(int)$_POST['galleryid'] ){
|
209 |
+
echo '<p><strong>'.__('Error: ','rbs_gallery').'</strong>'.__('Empty gallery ID','rbs_gallery').'</p>';
|
210 |
+
return ;
|
211 |
+
} ;
|
212 |
+
$galleryId = (int)$_POST['galleryid'];
|
213 |
+
$count_key = 'gallery_views_count';
|
214 |
+
|
215 |
+
delete_post_meta( $galleryId, $count_key);
|
216 |
+
add_post_meta( $galleryId, $count_key, '0');
|
217 |
+
|
218 |
+
echo 1;
|
219 |
+
die();
|
220 |
+
}
|
221 |
}
|
includes/options/rbs_gallery_options_tools.php
CHANGED
@@ -12,7 +12,6 @@
|
|
12 |
* Available only in http://robosoft.co/
|
13 |
*/
|
14 |
|
15 |
-
|
16 |
$tools_group = new_cmb2_box( array(
|
17 |
'id' => ROBO_GALLERY_PREFIX.'tools_metabox',
|
18 |
'title' => '<span class="dashicons dashicons-admin-tools"></span> '.__('Gallery Tools','rbs_gallery'),
|
@@ -38,9 +37,12 @@ if(isset($_GET['post'])){
|
|
38 |
.__('Posts List','rbs_gallery')
|
39 |
.'</button>'
|
40 |
.'<p class="rbs_desc">'.__('Here you can create and customize new post with gallery inside it','rbs_gallery').'</p> '
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
44 |
.'</div> '
|
45 |
,
|
46 |
'after_row' => '</div>',
|
12 |
* Available only in http://robosoft.co/
|
13 |
*/
|
14 |
|
|
|
15 |
$tools_group = new_cmb2_box( array(
|
16 |
'id' => ROBO_GALLERY_PREFIX.'tools_metabox',
|
17 |
'title' => '<span class="dashicons dashicons-admin-tools"></span> '.__('Gallery Tools','rbs_gallery'),
|
37 |
.__('Posts List','rbs_gallery')
|
38 |
.'</button>'
|
39 |
.'<p class="rbs_desc">'.__('Here you can create and customize new post with gallery inside it','rbs_gallery').'</p> '
|
40 |
+
.'<p>'
|
41 |
+
.'<span class="glyphicon glyphicon-eye-open"></span> '
|
42 |
+
.__('Gallery Views','rbs_gallery').': '
|
43 |
+
.'<strong id="rbs_gallery_views_value">'.(int) get_post_meta( (int)$_GET['post'], 'gallery_views_count', true).'</strong> '
|
44 |
+
.'<a href="#" id="rbs_gallery_clear_views" data-ok="'.__('Success: Statistic successfully reset!', 'rbs_gallery').'" class="hide-if-no-js">'.__('Reset').'</a>'
|
45 |
+
.'</p>'
|
46 |
.'</div> '
|
47 |
,
|
48 |
'after_row' => '</div>',
|
includes/rbs_gallery_list.php
CHANGED
@@ -40,8 +40,7 @@ if(!function_exists('rbs_custom_columns')){
|
|
40 |
switch ( $column ) {
|
41 |
case 'rbs_gallery' :
|
42 |
global $post;
|
43 |
-
|
44 |
-
$slug = $post->post_name;
|
45 |
$shortcode = '<span>[robo-gallery id="'.$post->ID.'"]</span>';
|
46 |
echo $shortcode;
|
47 |
break;
|
@@ -58,7 +57,15 @@ if(!function_exists('rbs_custom_columns')){
|
|
58 |
}
|
59 |
|
60 |
if(!function_exists('add_rbs_table_columns')){
|
61 |
-
function add_rbs_table_columns($columns) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
add_filter('manage_'.ROBO_GALLERY_TYPE_POST.'_posts_columns' , 'add_rbs_table_columns');
|
63 |
}
|
64 |
|
40 |
switch ( $column ) {
|
41 |
case 'rbs_gallery' :
|
42 |
global $post;
|
43 |
+
//$slug = '' ; $slug = $post->post_name;
|
|
|
44 |
$shortcode = '<span>[robo-gallery id="'.$post->ID.'"]</span>';
|
45 |
echo $shortcode;
|
46 |
break;
|
57 |
}
|
58 |
|
59 |
if(!function_exists('add_rbs_table_columns')){
|
60 |
+
function add_rbs_table_columns($columns) {
|
61 |
+
return array_merge(
|
62 |
+
$columns,
|
63 |
+
array(
|
64 |
+
'rbs_gallery_views' => __('Views'),
|
65 |
+
'rbs_gallery' => __('Shortcode')
|
66 |
+
)
|
67 |
+
);
|
68 |
+
}
|
69 |
add_filter('manage_'.ROBO_GALLERY_TYPE_POST.'_posts_columns' , 'add_rbs_table_columns');
|
70 |
}
|
71 |
|
js/admin/extensions/create_post.js
CHANGED
@@ -130,4 +130,22 @@
|
|
130 |
rbs_insert_post_content.html(response);
|
131 |
});
|
132 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
})(jQuery);
|
130 |
rbs_insert_post_content.html(response);
|
131 |
});
|
132 |
});
|
133 |
+
|
134 |
+
$('#rbs_gallery_clear_views').click(function(evnt){
|
135 |
+
evnt.preventDefault();
|
136 |
+
var data = {
|
137 |
+
'action': 'rbs_gallery',
|
138 |
+
'function': 'reset_views',
|
139 |
+
'galleryid': roboGalleryActionDialogId,
|
140 |
+
};
|
141 |
+
jQuery(this).hide();
|
142 |
+
$.post(ajaxurl, data, function(response) {
|
143 |
+
if(response==1){
|
144 |
+
jQuery("#rbs_gallery_views_value").text('0');
|
145 |
+
alert( $('#rbs_gallery_clear_views').data("ok") );
|
146 |
+
} else {
|
147 |
+
alert(response);
|
148 |
+
}
|
149 |
+
});
|
150 |
+
});
|
151 |
})(jQuery);
|
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 |
|
@@ -194,126 +194,126 @@ No, we don't have any limits for amount of the images in gallery
|
|
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 |
-
=
|
207 |
|
208 |
-
|
209 |
|
210 |
-
=
|
211 |
|
212 |
-
|
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 |
-
=
|
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
|
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 |
-
=
|
235 |
-
|
236 |
-
Yes, gallery have fade hover effect
|
237 |
-
|
238 |
-
= How to use multi-category functionality of the gallery? =
|
239 |
|
240 |
-
|
241 |
|
242 |
-
=
|
243 |
-
|
244 |
-
Yes, you can insert gallery into post with shortcode tag
|
245 |
-
|
246 |
-
= How to make gallery thumbnails with rounded corners? =
|
247 |
|
248 |
-
|
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
|
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 |
-
= Is it possible
|
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 |
-
|
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 |
-
=
|
275 |
|
276 |
-
|
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 |
-
=
|
283 |
|
284 |
-
|
285 |
|
286 |
-
=
|
287 |
|
288 |
-
|
289 |
|
290 |
-
=
|
291 |
|
292 |
-
|
293 |
|
294 |
-
=
|
295 |
|
296 |
-
|
|
|
|
|
|
|
|
|
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
|
307 |
|
308 |
-
|
309 |
|
310 |
-
=
|
311 |
|
312 |
-
|
313 |
|
314 |
-
=
|
315 |
|
316 |
-
When you open gallery
|
|
|
|
|
|
|
|
|
317 |
|
318 |
= Do you have some conflict in gallery back end? =
|
319 |
|
@@ -323,22 +323,14 @@ If you have some conflict in gallery back end you can sort it with new compatibi
|
|
323 |
|
324 |
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
|
325 |
|
326 |
-
= How to
|
327 |
|
328 |
-
|
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
|
333 |
|
334 |
-
= How I can create custom (grid) layout of the thumbnails? =
|
335 |
-
|
336 |
-
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
|
337 |
-
|
338 |
-
= How to customize hover effect? =
|
339 |
-
|
340 |
-
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
|
341 |
-
|
342 |
= How to enable lazy load in gallery options? =
|
343 |
|
344 |
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
|
@@ -355,6 +347,14 @@ In gallery hover settings you can enable template where you can fully customize
|
|
355 |
|
356 |
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
357 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
= How to load more function work? =
|
359 |
|
360 |
In gallery admin section you can define amount of the images for the first load and after click on load more button. Load more it's such google gallery style pagination functionality which make you able to limit amount of the images for the first load
|
@@ -589,6 +589,9 @@ If any problem occurs, please contact us.
|
|
589 |
|
590 |
== Changelog ==
|
591 |
|
|
|
|
|
|
|
592 |
= 1.8.8 =
|
593 |
* Added new gallery views field in gallery listing section
|
594 |
|
@@ -966,6 +969,9 @@ If any problem occurs, please contact us.
|
|
966 |
|
967 |
== Upgrade Notice ==
|
968 |
|
|
|
|
|
|
|
969 |
= 1.8.8 =
|
970 |
Added new gallery views field in gallery listing section
|
971 |
|
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.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
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 change font color of the gallery image description text? =
|
198 |
|
199 |
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
|
200 |
the text?
|
201 |
|
202 |
+
= How to use multi-category functionality of the gallery? =
|
203 |
|
204 |
+
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
|
205 |
|
206 |
+
= Is it possible to use HTML in image description ? =
|
207 |
|
208 |
+
Yes, you can use HTML tags inside gallery image description field
|
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 hide titles of the gallery image in lightbox ? =
|
215 |
+
|
216 |
+
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.
|
217 |
+
|
218 |
+
= Is it possible to turn off border of the gallery thumbnails? =
|
219 |
+
|
220 |
+
Yes, in gallery options you can turn on/off border option
|
221 |
+
|
222 |
= Do you have some limit for images size in gallery? =
|
223 |
|
224 |
No, we don't have any limits for image size in our gallery.
|
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 |
= 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 |
+
= How to make shadow for the gallery thumbnails? =
|
|
|
|
|
|
|
|
|
235 |
|
236 |
+
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
|
237 |
|
238 |
+
= Do you have fade effect for the thumbnails hover? =
|
|
|
|
|
|
|
|
|
239 |
|
240 |
+
Yes, gallery have fade hover effect
|
241 |
|
242 |
= How to define custom hover effect for some gallery thumbnail? =
|
243 |
|
244 |
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.
|
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 change quality of the gallery thumbnails? =
|
251 |
|
252 |
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
253 |
|
254 |
+
= Is it possible create gallery in Wordpress post with Gallery? =
|
|
|
|
|
|
|
|
|
255 |
|
256 |
+
Yes, you can insert gallery into post with shortcode tag
|
257 |
|
258 |
= How to change amount of images loading on gallery page? =
|
259 |
|
260 |
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
|
261 |
|
262 |
+
= How to change text below image in lightbox ? =
|
263 |
|
264 |
+
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.
|
265 |
|
266 |
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
267 |
|
268 |
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
269 |
|
270 |
+
= How to define custom link for some gallery images? =
|
271 |
|
272 |
+
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
|
273 |
|
274 |
+
= Is it possible to have different settings for hover and static interface elements? =
|
275 |
|
276 |
+
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
277 |
|
278 |
+
= Where specify description of the gallery images? =
|
279 |
|
280 |
+
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
|
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 |
+
= What can I do if some gallery interface elements in backend do not work properly? =
|
287 |
+
|
288 |
+
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.
|
289 |
|
290 |
= How to change color of the gallery interface elements? =
|
291 |
|
292 |
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.
|
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 |
+
= How to generate shortcode for Wordpress page, post or widget? =
|
303 |
|
304 |
+
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
|
305 |
|
306 |
+
= What can I do if some gallery interface elements in backend do not work properly? =
|
307 |
|
308 |
+
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.
|
309 |
|
310 |
+
= How to upload images to the gallery? =
|
311 |
|
312 |
+
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.
|
313 |
+
|
314 |
+
= How to insert gallery into Wordpress page or post? =
|
315 |
+
|
316 |
+
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
|
317 |
|
318 |
= Do you have some conflict in gallery back end? =
|
319 |
|
323 |
|
324 |
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
|
325 |
|
326 |
+
= How to define custom link for some gallery images? =
|
327 |
|
328 |
+
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
|
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
|
333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
= How to enable lazy load in gallery options? =
|
335 |
|
336 |
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
|
347 |
|
348 |
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
349 |
|
350 |
+
= How I can create custom (grid) layout of the thumbnails? =
|
351 |
+
|
352 |
+
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
|
353 |
+
|
354 |
+
= How to customize hover effect? =
|
355 |
+
|
356 |
+
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
|
357 |
+
|
358 |
= How to load more function work? =
|
359 |
|
360 |
In gallery admin section you can define amount of the images for the first load and after click on load more button. Load more it's such google gallery style pagination functionality which make you able to limit amount of the images for the first load
|
589 |
|
590 |
== Changelog ==
|
591 |
|
592 |
+
= 1.8.9 =
|
593 |
+
* Added new gallery reset views option in gallery edit mode, in statistics block
|
594 |
+
|
595 |
= 1.8.8 =
|
596 |
* Added new gallery views field in gallery listing section
|
597 |
|
969 |
|
970 |
== Upgrade Notice ==
|
971 |
|
972 |
+
= 1.8.9 =
|
973 |
+
Added new gallery reset views option in gallery edit mode, in statistics block
|
974 |
+
|
975 |
= 1.8.8 =
|
976 |
Added new gallery views field in gallery listing section
|
977 |
|
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.9
|
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.9');
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|