Version Description
- Added views block in statistics section
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 1.9.8 |
Comparing to | |
See all releases |
Code changes from version 1.9.7 to 1.9.8
- includes/extensions/stats/stats.form.php +30 -4
- includes/rbs_class_update.php +0 -1
- includes/rbs_gallery_init.php +1 -2
- readme.txt +121 -115
- robogallery.php +2 -2
includes/extensions/stats/stats.form.php
CHANGED
@@ -43,7 +43,21 @@ $tab = 'gallery';
|
|
43 |
$today = date("Y_j_n");
|
44 |
$countPosts = wp_count_posts(ROBO_GALLERY_TYPE_POST);
|
45 |
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
switch ($tab) {
|
49 |
case 'gallery':
|
@@ -52,7 +66,18 @@ switch ($tab) {
|
|
52 |
<tbody>
|
53 |
<tr>
|
54 |
<th scope="row">
|
55 |
-
<label ><?php _e('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
</th>
|
57 |
<td>
|
58 |
<p><?php echo $countPosts->publish ; ?></p>
|
@@ -60,7 +85,7 @@ switch ($tab) {
|
|
60 |
</tr>
|
61 |
<tr>
|
62 |
<th scope="row">
|
63 |
-
<label ><?php _e('
|
64 |
</th>
|
65 |
<td>
|
66 |
<p><?php echo $countPosts->draft ; ?></p>
|
@@ -68,12 +93,13 @@ switch ($tab) {
|
|
68 |
</tr>
|
69 |
<tr>
|
70 |
<th scope="row">
|
71 |
-
<label ><?php _e('
|
72 |
</th>
|
73 |
<td>
|
74 |
<p><?php echo $countPosts->trash ; ?></p>
|
75 |
</td>
|
76 |
</tr>
|
|
|
77 |
</tbody>
|
78 |
</table>
|
79 |
<?php
|
43 |
$today = date("Y_j_n");
|
44 |
$countPosts = wp_count_posts(ROBO_GALLERY_TYPE_POST);
|
45 |
|
46 |
+
|
47 |
+
$args = array(
|
48 |
+
'post_type' => ROBO_GALLERY_TYPE_POST,
|
49 |
+
'meta_key' => 'gallery_views_count',
|
50 |
+
'posts_per_page' =>-1,
|
51 |
+
);
|
52 |
+
$allViews = 0;
|
53 |
+
$loop = new WP_Query($args);
|
54 |
+
|
55 |
+
if ( $loop->have_posts() ){
|
56 |
+
for ($i=0; $i <count($loop->posts) ; $i++) {
|
57 |
+
$amt = get_post_meta( $loop->posts[$i]->ID, 'gallery_views_count', true);
|
58 |
+
if ($amt) {$allViews += $amt;};
|
59 |
+
}
|
60 |
+
}
|
61 |
|
62 |
switch ($tab) {
|
63 |
case 'gallery':
|
66 |
<tbody>
|
67 |
<tr>
|
68 |
<th scope="row">
|
69 |
+
<label ><?php _e('Total Views', 'rbs_gallery'); ?></label>
|
70 |
+
</th>
|
71 |
+
<td>
|
72 |
+
<p><?php echo $allViews ; ?></p>
|
73 |
+
</td>
|
74 |
+
</tr>
|
75 |
+
<tr>
|
76 |
+
<td><hr></td>
|
77 |
+
</tr>
|
78 |
+
<tr>
|
79 |
+
<th scope="row">
|
80 |
+
<label ><?php _e('Published', 'rbs_gallery'); ?></label>
|
81 |
</th>
|
82 |
<td>
|
83 |
<p><?php echo $countPosts->publish ; ?></p>
|
85 |
</tr>
|
86 |
<tr>
|
87 |
<th scope="row">
|
88 |
+
<label ><?php _e('Drafts', 'rbs_gallery'); ?></label>
|
89 |
</th>
|
90 |
<td>
|
91 |
<p><?php echo $countPosts->draft ; ?></p>
|
93 |
</tr>
|
94 |
<tr>
|
95 |
<th scope="row">
|
96 |
+
<label ><?php _e('Trash', 'rbs_gallery'); ?></label>
|
97 |
</th>
|
98 |
<td>
|
99 |
<p><?php echo $countPosts->trash ; ?></p>
|
100 |
</td>
|
101 |
</tr>
|
102 |
+
|
103 |
</tbody>
|
104 |
</table>
|
105 |
<?php
|
includes/rbs_class_update.php
CHANGED
@@ -84,7 +84,6 @@ class RoboGalleryUpdate {
|
|
84 |
|
85 |
|
86 |
public function update(){
|
87 |
-
|
88 |
if( count($this->fieldArray) ){
|
89 |
foreach($this->fieldArray as $version => $fields){
|
90 |
if(
|
84 |
|
85 |
|
86 |
public function update(){
|
|
|
87 |
if( count($this->fieldArray) ){
|
88 |
foreach($this->fieldArray as $version => $fields){
|
89 |
if(
|
includes/rbs_gallery_init.php
CHANGED
@@ -85,11 +85,10 @@ function create_post_type_robo_gallery() {
|
|
85 |
'supports' => $supportArray,
|
86 |
'menu_icon' => 'dashicons-format-gallery',
|
87 |
));
|
88 |
-
|
89 |
delete_option( 'RoboGalleryInstall' );
|
90 |
global $wp_rewrite; $wp_rewrite->flush_rules();
|
91 |
}
|
92 |
-
|
93 |
}
|
94 |
add_action( 'init', 'create_post_type_robo_gallery' );
|
95 |
|
85 |
'supports' => $supportArray,
|
86 |
'menu_icon' => 'dashicons-format-gallery',
|
87 |
));
|
88 |
+
if ( is_admin() && get_option( 'RoboGalleryInstall' ) == 'now' ) {
|
89 |
delete_option( 'RoboGalleryInstall' );
|
90 |
global $wp_rewrite; $wp_rewrite->flush_rules();
|
91 |
}
|
|
|
92 |
}
|
93 |
add_action( 'init', 'create_post_type_robo_gallery' );
|
94 |
|
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.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -186,10 +186,6 @@ Every gallery image have additional fields where you can define custom link, tit
|
|
186 |
|
187 |
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.
|
188 |
|
189 |
-
= How to define size of the gallery images thumbnails? =
|
190 |
-
|
191 |
-
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
|
192 |
-
|
193 |
= Is it possible to create direct link on the front end to the gallery? =
|
194 |
|
195 |
Yes, you can use generated direct link inside particular gallery settings
|
@@ -202,10 +198,6 @@ When you enable border in gallery settings you will see multiply options for cus
|
|
202 |
|
203 |
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.
|
204 |
|
205 |
-
= How to change amount of images loading on gallery page? =
|
206 |
-
|
207 |
-
In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
|
208 |
-
|
209 |
= How to change font color of the gallery image description text? =
|
210 |
|
211 |
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
|
@@ -218,26 +210,10 @@ Every gallery image have additional fields where you can define custom link, tit
|
|
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 |
-
= Which style parameters I can change for the hover button icon? =
|
222 |
-
|
223 |
-
You can select border color, background color and color of the icon, size of the icon
|
224 |
-
|
225 |
-
= Is it possible to change transparency of the gallery lightbox background ? =
|
226 |
-
|
227 |
-
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.
|
228 |
-
|
229 |
= How to add text before and after gallery? =
|
230 |
|
231 |
In gallery settings you can find before/after text gallery field. This fields support HTML tags.
|
232 |
|
233 |
-
= How to customize hover effect? =
|
234 |
-
|
235 |
-
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
|
236 |
-
|
237 |
-
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
238 |
-
|
239 |
-
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
240 |
-
|
241 |
= Where it's possible to define vertical and horizontal paddings? =
|
242 |
|
243 |
In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
|
@@ -246,30 +222,10 @@ In gallery settings you can define horizontal and vertical paddings between gall
|
|
246 |
|
247 |
In gallery settings you can find general settings section where you can turn on/off thumbnails border. Also you can customize there style of the border, namely width, color and style of the thumbnail borders
|
248 |
|
249 |
-
= How to define custom ALT for gallery image? =
|
250 |
-
|
251 |
-
When you open gallery images manager you can define alt for every gallery image there
|
252 |
-
|
253 |
-
= What can I do if some gallery interface elements in backend do not work properly? =
|
254 |
-
|
255 |
-
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.
|
256 |
-
|
257 |
= How to change font color of the gallery image caption? =
|
258 |
|
259 |
In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
|
260 |
|
261 |
-
= How to upload images to the gallery? =
|
262 |
-
|
263 |
-
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.
|
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 |
-
= Is it possible to generate post with gallery inside it ? =
|
270 |
-
|
271 |
-
In gallery settings we create separate section where you can find create new post button. After click on this button you'll see wizard form where you can select all additional parameters for the gallery new post.
|
272 |
-
|
273 |
= How to insert text before/after gallery? =
|
274 |
|
275 |
In our gallery we implemented few additional options which help you to add some text with HTML before/after gallery on your page. IN gallery settings you can find pre/post text fields where you can define some description text for the gallery. This gallery fields support HTML, so you can customize this text with HTML tags or css styles.
|
@@ -282,22 +238,10 @@ If you have some conflict in gallery back end you can sort it with new compatibi
|
|
282 |
|
283 |
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
|
284 |
|
285 |
-
= Do you have some limits for images types in gallery? =
|
286 |
-
|
287 |
-
You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
288 |
-
|
289 |
-
= How to make gallery thumbnails with rounded corners? =
|
290 |
-
|
291 |
-
In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
|
292 |
-
|
293 |
= How to install Gallery plugin? =
|
294 |
|
295 |
Just install it using regular Wordpress plugins installing mechanism. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
|
296 |
|
297 |
-
= How to generate shortcode for Wordpress page, post or widget? =
|
298 |
-
|
299 |
-
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
|
300 |
-
|
301 |
= How to turn off social buttons in gallery lightbox? =
|
302 |
|
303 |
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.
|
@@ -314,30 +258,14 @@ When you open gallery settings inside you'll find images manager section. Images
|
|
314 |
|
315 |
Yes, you can easily change color of the hovered image in gallery in backend. In gallery settings we build-in comfortable color selector which make you able to change color of the gallery interface elements.
|
316 |
|
317 |
-
= How to crop uploaded gallery image? =
|
318 |
-
|
319 |
-
When you open gallery images manager you'll find there image edit mode where you can crop source image
|
320 |
-
|
321 |
= Do you have some limits for images amount in gallery? =
|
322 |
|
323 |
No, we don't have any limits for amount of the images in gallery
|
324 |
|
325 |
-
= How to change color of the gallery thumbnails border? =
|
326 |
-
|
327 |
-
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
|
328 |
-
|
329 |
-
= How to use multi-category functionality of the gallery? =
|
330 |
-
|
331 |
-
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
|
332 |
-
|
333 |
= Is it possible to insert video as gallery link? =
|
334 |
|
335 |
Yes. 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 video link field in gallery image options, where you can define some custom link to the online video.
|
336 |
|
337 |
-
= How to make gallery with no space between thumbnails of the gallery? =
|
338 |
-
|
339 |
-
If you wish to make section with gallery without spacing between thumbnails you need just set horizontal and vertical spacing to 0 in gallery thumbnails view options
|
340 |
-
|
341 |
= Where to change font color of the gallery lightbox text? =
|
342 |
|
343 |
When you open gallery settings you can find there gallery lightbox settings block, where you can gallery lightbox text color using color selector.
|
@@ -346,10 +274,6 @@ When you open gallery settings you can find there gallery lightbox settings bloc
|
|
346 |
|
347 |
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
|
348 |
|
349 |
-
= How to insert gallery into Wordpress page or post? =
|
350 |
-
|
351 |
-
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
|
352 |
-
|
353 |
= How to define video for some gallery image? =
|
354 |
|
355 |
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
|
@@ -358,18 +282,10 @@ Every gallery image have additional fields where you can define custom link, tit
|
|
358 |
|
359 |
In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change size of the text
|
360 |
|
361 |
-
= How to hide titles of the gallery image in lightbox ? =
|
362 |
-
|
363 |
-
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.
|
364 |
-
|
365 |
= How to enable icons on gallery hover shutter? =
|
366 |
|
367 |
In gallery hover settings we implemented full set of configuration settings of the buttons. You can change icon, style size, colors for static and hovered buttons. You can select icon with build in wizard
|
368 |
|
369 |
-
= Which tags build in shutter of gallery hover template customization? =
|
370 |
-
|
371 |
-
For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
|
372 |
-
|
373 |
= How many icons you have in build in icons library? =
|
374 |
|
375 |
In build library of the icons in gallery you can find 533 icons
|
@@ -378,14 +294,6 @@ In build library of the icons in gallery you can find 533 icons
|
|
378 |
|
379 |
In gallery general settings you can find gallery thumbnails columns options which could depend of the device screen size. You can define different gallery columns amount for different resolution.
|
380 |
|
381 |
-
= Is it possible to turn off border of the gallery thumbnails? =
|
382 |
-
|
383 |
-
Yes, in gallery options you can turn on/off border option
|
384 |
-
|
385 |
-
= How to rotate uploaded gallery image? =
|
386 |
-
|
387 |
-
When you open gallery images manager you'll find there image edit mode where you can rotate source image
|
388 |
-
|
389 |
= How to delete title, author, date above the gallery of the gallery post? =
|
390 |
|
391 |
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.
|
@@ -398,9 +306,9 @@ Quality of the gallery thumbnails could be easily changed in gallery size option
|
|
398 |
|
399 |
Gallery have 15 hover animation effects, which could be combined with additional custom options
|
400 |
|
401 |
-
= How to
|
402 |
|
403 |
-
|
404 |
|
405 |
= How to change icon on gallery thumbnail button? =
|
406 |
|
@@ -410,25 +318,13 @@ When you open gallery settings you can see there hover options section where we
|
|
410 |
|
411 |
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
|
412 |
|
413 |
-
= How I can make gallery only with one size pictures but I would like to arrange gallery with pictures of the different size - one big, several smaller? =
|
414 |
-
|
415 |
-
In our gallery you can define different amount of the columns for the images thumbnails and every gallery image could have different width which measuring by columns of the images thumbnails. For example you can define 2 column size for the image 1 and 3 columns size for image 5 but the rest of the gallery images could stay with default one column value in images settings.
|
416 |
-
|
417 |
= Is it possible to have different settings for hover and static interface elements? =
|
418 |
|
419 |
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
420 |
|
421 |
-
= How to
|
422 |
-
|
423 |
-
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
|
424 |
-
|
425 |
-
= Do you have fade effect for the thumbnails hover? =
|
426 |
-
|
427 |
-
Yes, gallery have fade hover effect
|
428 |
-
|
429 |
-
= Is it possible create gallery in Wordpress post with Gallery? =
|
430 |
|
431 |
-
|
432 |
|
433 |
= How to customize gallery hover effect shutter layout? =
|
434 |
|
@@ -442,22 +338,34 @@ Yes, you can use HTML tags inside gallery image description field
|
|
442 |
|
443 |
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.
|
444 |
|
|
|
|
|
|
|
|
|
445 |
= How many buttons with icons do you have in gallery? =
|
446 |
|
447 |
In our gallery we have 2 buttons for every gallery thumbnail. Zoom button and link button.
|
448 |
|
449 |
-
= How to
|
450 |
|
451 |
-
In
|
452 |
|
453 |
-
=
|
454 |
|
455 |
-
In gallery
|
456 |
|
457 |
= How to change font style of the gallery image caption? =
|
458 |
|
459 |
In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
|
460 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
= How to change font size of the gallery image caption? =
|
462 |
|
463 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
@@ -470,26 +378,102 @@ Yes. When you open gallery media manager you'll see there list of the gallery im
|
|
470 |
|
471 |
No, we don't have any limits for image size in our gallery.
|
472 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
= How I can create custom (grid) layout of the thumbnails? =
|
474 |
|
475 |
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
|
476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
= How to set description text below image in the lightbox? =
|
478 |
|
479 |
In gallery settings you can find lightbox section and if you need to show description of the images below images in the lightbox you need to select text source in lightbox settings from defined values.
|
480 |
|
|
|
|
|
|
|
|
|
481 |
= Is it possible to change background color of the gallery lightbox? =
|
482 |
|
483 |
Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block, where you can change color of the gallery lightbox background.
|
484 |
|
485 |
-
=
|
486 |
|
487 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
|
489 |
= How to enable lazy load in gallery options? =
|
490 |
|
491 |
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
|
492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
= How to flip uploaded gallery image? =
|
494 |
|
495 |
When you open gallery images manager you'll find there image edit mode where you can flip source image
|
@@ -498,10 +482,22 @@ When you open gallery images manager you'll find there image edit mode where you
|
|
498 |
|
499 |
Yes, it's possible to change transparency in gallery settings
|
500 |
|
|
|
|
|
|
|
|
|
501 |
= How to change text below image in lightbox ? =
|
502 |
|
503 |
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.
|
504 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
= How to change ordering of the gallery images? =
|
506 |
|
507 |
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
@@ -510,6 +506,10 @@ When you open gallery for edit you can find there images manager where you can c
|
|
510 |
|
511 |
When you enable border in gallery settings you will see multiply options for customization of the border. When you open color selector you can also select some transparency value there
|
512 |
|
|
|
|
|
|
|
|
|
513 |
== Screenshots ==
|
514 |
|
515 |
1. Gallery Demo 1
|
@@ -584,6 +584,9 @@ If any problem occurs, please contact us.
|
|
584 |
|
585 |
== Changelog ==
|
586 |
|
|
|
|
|
|
|
587 |
= 1.9.7 =
|
588 |
* Fixed conflict with Flash
|
589 |
|
@@ -994,6 +997,9 @@ If any problem occurs, please contact us.
|
|
994 |
|
995 |
== Upgrade Notice ==
|
996 |
|
|
|
|
|
|
|
997 |
= 1.9.7 =
|
998 |
Fixed conflict with Flash
|
999 |
|
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.9.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
186 |
|
187 |
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.
|
188 |
|
|
|
|
|
|
|
|
|
189 |
= Is it possible to create direct link on the front end to the gallery? =
|
190 |
|
191 |
Yes, you can use generated direct link inside particular gallery settings
|
198 |
|
199 |
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.
|
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
|
210 |
|
211 |
If you have some conflict in gallery back end you can sort it with new compatibility option. If combo box element do not drop down you can switch between classic and modern style, as result you can avoid conflict with another code.
|
212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
= How to add text before and after gallery? =
|
214 |
|
215 |
In gallery settings you can find before/after text gallery field. This fields support HTML tags.
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
= Where it's possible to define vertical and horizontal paddings? =
|
218 |
|
219 |
In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
|
222 |
|
223 |
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
|
224 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
= How to change font color of the gallery image caption? =
|
226 |
|
227 |
In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
|
228 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
= How to insert text before/after gallery? =
|
230 |
|
231 |
In our gallery we implemented few additional options which help you to add some text with HTML before/after gallery on your page. IN gallery settings you can find pre/post text fields where you can define some description text for the gallery. This gallery fields support HTML, so you can customize this text with HTML tags or css styles.
|
238 |
|
239 |
Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
|
240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
= How to install Gallery plugin? =
|
242 |
|
243 |
Just install it using regular Wordpress plugins installing mechanism. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
|
244 |
|
|
|
|
|
|
|
|
|
245 |
= How to turn off social buttons in gallery lightbox? =
|
246 |
|
247 |
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.
|
258 |
|
259 |
Yes, you can easily change color of the hovered image in gallery in backend. In gallery settings we build-in comfortable color selector which make you able to change color of the gallery interface elements.
|
260 |
|
|
|
|
|
|
|
|
|
261 |
= Do you have some limits for images amount in gallery? =
|
262 |
|
263 |
No, we don't have any limits for amount of the images in gallery
|
264 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
= Is it possible to insert video as gallery link? =
|
266 |
|
267 |
Yes. 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 video link field in gallery image options, where you can define some custom link to the online video.
|
268 |
|
|
|
|
|
|
|
|
|
269 |
= Where to change font color of the gallery lightbox text? =
|
270 |
|
271 |
When you open gallery settings you can find there gallery lightbox settings block, where you can gallery lightbox text color using color selector.
|
274 |
|
275 |
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
|
276 |
|
|
|
|
|
|
|
|
|
277 |
= How to define video for some gallery image? =
|
278 |
|
279 |
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
|
282 |
|
283 |
In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change size of the text
|
284 |
|
|
|
|
|
|
|
|
|
285 |
= How to enable icons on gallery hover shutter? =
|
286 |
|
287 |
In gallery hover settings we implemented full set of configuration settings of the buttons. You can change icon, style size, colors for static and hovered buttons. You can select icon with build in wizard
|
288 |
|
|
|
|
|
|
|
|
|
289 |
= How many icons you have in build in icons library? =
|
290 |
|
291 |
In build library of the icons in gallery you can find 533 icons
|
294 |
|
295 |
In gallery general settings you can find gallery thumbnails columns options which could depend of the device screen size. You can define different gallery columns amount for different resolution.
|
296 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
= How to delete title, author, date above the gallery of the gallery post? =
|
298 |
|
299 |
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.
|
306 |
|
307 |
Gallery have 15 hover animation effects, which could be combined with additional custom options
|
308 |
|
309 |
+
= How to crop uploaded gallery image? =
|
310 |
|
311 |
+
When you open gallery images manager you'll find there image edit mode where you can crop source image
|
312 |
|
313 |
= How to change icon on gallery thumbnail button? =
|
314 |
|
318 |
|
319 |
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
|
320 |
|
|
|
|
|
|
|
|
|
321 |
= Is it possible to have different settings for hover and static interface elements? =
|
322 |
|
323 |
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
324 |
|
325 |
+
= How to make gallery thumbnails with rounded corners? =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
|
327 |
+
In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
|
328 |
|
329 |
= How to customize gallery hover effect shutter layout? =
|
330 |
|
338 |
|
339 |
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.
|
340 |
|
341 |
+
= How to rotate uploaded gallery image? =
|
342 |
+
|
343 |
+
When you open gallery images manager you'll find there image edit mode where you can rotate source image
|
344 |
+
|
345 |
= How many buttons with icons do you have in gallery? =
|
346 |
|
347 |
In our gallery we have 2 buttons for every gallery thumbnail. Zoom button and link button.
|
348 |
|
349 |
+
= How to hide titles of the gallery image in lightbox ? =
|
350 |
|
351 |
+
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.
|
352 |
|
353 |
+
= How to customize gallery layouts for different screen resolutions? =
|
354 |
|
355 |
+
In admin section of the gallery you'll find columns options which provide you advanced customization options for different resolutions. You can define some static size or auto size for every resolution.
|
356 |
|
357 |
= How to change font style of the gallery image caption? =
|
358 |
|
359 |
In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
|
360 |
|
361 |
+
= How to define custom link for some gallery images? =
|
362 |
+
|
363 |
+
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
|
364 |
+
|
365 |
+
= Do you have fade effect for the thumbnails hover? =
|
366 |
+
|
367 |
+
Yes, gallery have fade hover effect
|
368 |
+
|
369 |
= How to change font size of the gallery image caption? =
|
370 |
|
371 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
378 |
|
379 |
No, we don't have any limits for image size in our gallery.
|
380 |
|
381 |
+
= How to insert gallery into Wordpress page or post? =
|
382 |
+
|
383 |
+
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
|
384 |
+
|
385 |
+
= How I can make gallery only with one size pictures but I would like to arrange gallery with pictures of the different size - one big, several smaller? =
|
386 |
+
|
387 |
+
In our gallery you can define different amount of the columns for the images thumbnails and every gallery image could have different width which measuring by columns of the images thumbnails. For example you can define 2 column size for the image 1 and 3 columns size for image 5 but the rest of the gallery images could stay with default one column value in images settings.
|
388 |
+
|
389 |
= How I can create custom (grid) layout of the thumbnails? =
|
390 |
|
391 |
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
|
392 |
|
393 |
+
= How to define size of the gallery images thumbnails? =
|
394 |
+
|
395 |
+
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
|
396 |
+
|
397 |
+
= How to use multi-category functionality of the gallery? =
|
398 |
+
|
399 |
+
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
|
400 |
+
|
401 |
= How to set description text below image in the lightbox? =
|
402 |
|
403 |
In gallery settings you can find lightbox section and if you need to show description of the images below images in the lightbox you need to select text source in lightbox settings from defined values.
|
404 |
|
405 |
+
= How to make gallery with no space between thumbnails of the gallery? =
|
406 |
+
|
407 |
+
If you wish to make section with gallery without spacing between thumbnails you need just set horizontal and vertical spacing to 0 in gallery thumbnails view options
|
408 |
+
|
409 |
= Is it possible to change background color of the gallery lightbox? =
|
410 |
|
411 |
Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block, where you can change color of the gallery lightbox background.
|
412 |
|
413 |
+
= Is it possible to turn off border of the gallery thumbnails? =
|
414 |
|
415 |
+
Yes, in gallery options you can turn on/off border option
|
416 |
+
|
417 |
+
= How to load more function work? =
|
418 |
+
|
419 |
+
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
|
420 |
+
|
421 |
+
= Do you have some limits for images types in gallery? =
|
422 |
+
|
423 |
+
You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
424 |
+
|
425 |
+
= Is it possible to change transparency of the gallery lightbox background ? =
|
426 |
+
|
427 |
+
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.
|
428 |
+
|
429 |
+
= How to upload images to the gallery? =
|
430 |
+
|
431 |
+
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.
|
432 |
|
433 |
= How to enable lazy load in gallery options? =
|
434 |
|
435 |
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
|
436 |
|
437 |
+
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
438 |
+
|
439 |
+
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
440 |
+
|
441 |
+
= How to change amount of images loading on gallery page? =
|
442 |
+
|
443 |
+
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
|
444 |
+
|
445 |
+
= How to generate shortcode for Wordpress page, post or widget? =
|
446 |
+
|
447 |
+
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
|
448 |
+
|
449 |
+
= How to change color of the gallery thumbnails border? =
|
450 |
+
|
451 |
+
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
|
452 |
+
|
453 |
+
= What can I do if some gallery interface elements in backend do not work properly? =
|
454 |
+
|
455 |
+
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.
|
456 |
+
|
457 |
+
= Which style parameters I can change for the hover button icon? =
|
458 |
+
|
459 |
+
You can select border color, background color and color of the icon, size of the icon
|
460 |
+
|
461 |
+
= How to define custom ALT for gallery image? =
|
462 |
+
|
463 |
+
When you open gallery images manager you can define alt for every gallery image there
|
464 |
+
|
465 |
+
= How to define custom hover effect for some gallery thumbnail? =
|
466 |
+
|
467 |
+
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.
|
468 |
+
|
469 |
+
= Which tags build in shutter of gallery hover template customization? =
|
470 |
+
|
471 |
+
For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
|
472 |
+
|
473 |
+
= Is it possible to generate post with gallery inside it ? =
|
474 |
+
|
475 |
+
In gallery settings we create separate section where you can find create new post button. After click on this button you'll see wizard form where you can select all additional parameters for the gallery new post.
|
476 |
+
|
477 |
= How to flip uploaded gallery image? =
|
478 |
|
479 |
When you open gallery images manager you'll find there image edit mode where you can flip source image
|
482 |
|
483 |
Yes, it's possible to change transparency in gallery settings
|
484 |
|
485 |
+
= Is it possible to customize gallery image caption ? =
|
486 |
+
|
487 |
+
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
|
488 |
+
|
489 |
= How to change text below image in lightbox ? =
|
490 |
|
491 |
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.
|
492 |
|
493 |
+
= Is it possible create gallery in Wordpress post with Gallery? =
|
494 |
+
|
495 |
+
Yes, you can insert gallery into post with shortcode tag
|
496 |
+
|
497 |
+
= Do you have Polaroid style in your gallery? =
|
498 |
+
|
499 |
+
In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
|
500 |
+
|
501 |
= How to change ordering of the gallery images? =
|
502 |
|
503 |
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
506 |
|
507 |
When you enable border in gallery settings you will see multiply options for customization of the border. When you open color selector you can also select some transparency value there
|
508 |
|
509 |
+
= How to customize hover effect? =
|
510 |
+
|
511 |
+
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
|
512 |
+
|
513 |
== Screenshots ==
|
514 |
|
515 |
1. Gallery Demo 1
|
584 |
|
585 |
== Changelog ==
|
586 |
|
587 |
+
= 1.9.8 =
|
588 |
+
* Added views block in statistics section
|
589 |
+
|
590 |
= 1.9.7 =
|
591 |
* Fixed conflict with Flash
|
592 |
|
997 |
|
998 |
== Upgrade Notice ==
|
999 |
|
1000 |
+
= 1.9.8 =
|
1001 |
+
Added views block in statistics section
|
1002 |
+
|
1003 |
= 1.9.7 =
|
1004 |
Fixed conflict with Flash
|
1005 |
|
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.9.
|
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.9.
|
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.9.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.9.8');
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|