Version Description
- Updated backup section interface
- Added new tabbed section for export / import galleries settings
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 1.7.9 |
Comparing to | |
See all releases |
Code changes from version 1.7.8 to 1.7.9
- gallery/js/version.min.js +0 -0
- includes/extensions/backup/backup.form.php +94 -56
- readme.txt +91 -84
- robogallery.php +2 -2
gallery/js/version.min.js
DELETED
File without changes
|
includes/extensions/backup/backup.form.php
CHANGED
@@ -13,72 +13,94 @@
|
|
13 |
*/
|
14 |
|
15 |
|
16 |
-
//wp_enqueue_style ( 'toolbox-gallery-about', ROBO_GALLERY_URL.'css/admin/about.css', array( ), ROBO_GALLERY_VERSION );
|
17 |
|
18 |
-
|
|
|
|
|
|
|
|
|
19 |
|
20 |
?>
|
21 |
<div class="wrap">
|
22 |
<h1 class="rbs-nobackup">
|
23 |
<?php _e('Robo Gallery Backup', 'rbs_gallery'); ?>
|
24 |
</h1>
|
25 |
-
|
26 |
|
|
|
27 |
if( isset($_POST['rbsSubmitBackup']) ){
|
28 |
-
|
29 |
-
|
30 |
$tmp_name = $_FILES['rbsBackupFile']['tmp_name'];
|
31 |
-
|
32 |
-
|
|
|
|
|
|
|
|
|
33 |
|
34 |
-
|
35 |
-
|
36 |
-
//$wordPressExport->setArchiveChunkSize(2000000);
|
37 |
-
//$wordPressExport->exportPostsZip(['post_type' => $postType], 'export.xml');
|
38 |
-
//$wordPressExport->duplicate = $duplicate;
|
39 |
|
40 |
-
|
41 |
-
|
|
|
|
|
|
|
|
|
42 |
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
echo "<h2>".__('Success Import ', 'rbs_gallery')."</h2>";
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
}
|
61 |
}
|
62 |
-
|
63 |
-
echo '
|
64 |
-
//print_r($result);
|
65 |
}
|
66 |
-
} else {
|
67 |
-
echo '<h2>'._('Error: check secure').'</h2>';
|
68 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
$today = date("Y_j_n");
|
|
|
|
|
|
|
|
|
71 |
?>
|
72 |
<table class="form-table">
|
73 |
<tbody>
|
74 |
-
<form method="post" enctype="multipart/form-data" class="rbs_download_backup_export" action="<?php echo admin_url().'edit.php?post_type=robo_gallery_table&page=robo-gallery-backup'; ?>">
|
75 |
-
<tr>
|
76 |
-
<th scope="row" colspan="2"><label for="rbsGalleryBackupFilename"><?php _e('Export Gallery', 'rbs_gallery'); ?></label></th>
|
77 |
-
</tr>
|
78 |
<tr>
|
79 |
<th scope="row"><label for="rbsGalleryBackupFilename"><?php _e('File Name', 'rbs_gallery'); ?></label></th>
|
80 |
<td>
|
81 |
<input type="text" class="regular-text" id="rbsGalleryBackupFilename" name="rbsGalleryBackupFilename" value="<?php echo 'export_'.$today.'.xml';?>" >
|
|
|
82 |
</td>
|
83 |
</tr>
|
84 |
<tr>
|
@@ -86,31 +108,47 @@ $today = date("Y_j_n");
|
|
86 |
<input type="submit" class="button button-primary " value="<?php _e('Download Backup'); ?>" name="rbsDownloadBackup">
|
87 |
<input type="hidden" name="rbsGalleryExport" value="1">
|
88 |
<?php wp_nonce_field( 'rbs-gallery-backup-export', 'rbs-gallery-backup' ); ?>
|
89 |
-
|
90 |
</td>
|
91 |
</tr>
|
92 |
-
|
93 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
<tr>
|
95 |
-
<
|
96 |
-
</tr>
|
97 |
-
<tr>
|
98 |
-
<th scope="row"><label for="blogname"><?php _e('Import Gallery', 'rbs_gallery'); ?></label></th>
|
99 |
<td>
|
100 |
-
<
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
|
|
|
|
107 |
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
</td>
|
110 |
</tr>
|
111 |
-
|
|
|
112 |
</tbody>
|
113 |
</table>
|
114 |
-
|
115 |
</div>
|
116 |
<?php
|
13 |
*/
|
14 |
|
15 |
|
|
|
16 |
|
17 |
+
if(!function_exists('rbs_backup_error_message')){
|
18 |
+
function rbs_backup_error_message($message, $type='error'){
|
19 |
+
return '<div id="message" class="'.$type.'">'._($message).'</div>';
|
20 |
+
}
|
21 |
+
}
|
22 |
|
23 |
?>
|
24 |
<div class="wrap">
|
25 |
<h1 class="rbs-nobackup">
|
26 |
<?php _e('Robo Gallery Backup', 'rbs_gallery'); ?>
|
27 |
</h1>
|
28 |
+
<br>
|
29 |
|
30 |
+
<?php
|
31 |
if( isset($_POST['rbsSubmitBackup']) ){
|
32 |
+
if( check_admin_referer( 'rbs-gallery-backup-import', 'rbs-gallery-backup' ) ){
|
33 |
+
if ( $_FILES['rbsBackupFile']['error'] == UPLOAD_ERR_OK && is_uploaded_file($_FILES['rbsBackupFile']['tmp_name'])) {
|
34 |
$tmp_name = $_FILES['rbsBackupFile']['tmp_name'];
|
35 |
+
rbs_gallery_include('backup.class.php', plugin_dir_path( __FILE__ ));
|
36 |
+
$wordPressExport = new rbsGalleryExport();
|
37 |
+
//$wordPressExport->setArchiveDir(ABSPATH . 'tmp');
|
38 |
+
//$wordPressExport->setArchiveChunkSize(2000000);
|
39 |
+
//$wordPressExport->exportPostsZip(['post_type' => $postType], 'export.xml');
|
40 |
+
//$wordPressExport->duplicate = $duplicate;
|
41 |
|
42 |
+
$export = new rbsGalleryExport('robo_gallery_table');
|
43 |
+
$result = $export->importPostsXml($tmp_name);
|
|
|
|
|
|
|
44 |
|
45 |
+
echo '<div class="card">';
|
46 |
+
if( isset($result['errors']) && count($result['errors']) ){
|
47 |
+
echo rbs_backup_error_message('Error Import ', 'rbs_gallery');
|
48 |
+
print_r($result['errors']);
|
49 |
+
} else {
|
50 |
+
echo rbs_backup_error_message('Success Import ', 'rbs_gallery');
|
51 |
|
52 |
+
if( isset($result['import']) && is_array($result['import']) ){
|
53 |
+
if( isset($result['import']['post']) ) echo '<p>'.__('Import Post', 'rbs_gallery').': '.$result['import']['post'].'</p>';
|
54 |
+
if( isset($result['import']['element']) ) echo '<p>'.__('Import Images', 'rbs_gallery').': '.$result['import']['element'].'</p>';
|
55 |
+
//if( isset($result['import']['file']) ) echo '<p> --- Import Images Files: '.$result['import']['file'].'</p>';
|
56 |
+
}
|
|
|
57 |
|
58 |
+
if( isset($result['skipped']) && is_array($result['skipped']) ){
|
59 |
+
if( isset($result['skipped']['post']) ) echo '<p>'.__('Skipped Post', 'rbs_gallery').': '. $result['skipped']['post']. '</p>';
|
60 |
+
if( isset($result['skipped']['element']) ) echo '<p>'.__('Skipped Images', 'rbs_gallery').': '.$result['skipped']['element'].'</p>';
|
61 |
+
//if( isset($result['skipped']['file']) ) echo '<p> --- Import Images Files: '.$result['skipped']['file'].'</p>';
|
62 |
+
}
|
63 |
+
}
|
64 |
+
echo '</div>';
|
65 |
+
//print_r($result);
|
66 |
+
} else {
|
67 |
+
echo rbs_backup_error_message('Error: please check backup XML file');
|
|
|
68 |
}
|
69 |
+
} else {
|
70 |
+
echo rbs_backup_error_message('Error: check secure');
|
|
|
71 |
}
|
|
|
|
|
72 |
}
|
73 |
+
|
74 |
+
function rbs_backup_tabs( $current = 'export' ) {
|
75 |
+
$tabs = array( 'export' => 'Export Gallery', 'import' => 'Import Gallery' );
|
76 |
+
//echo '<div id="icon-themes" class="icon32"><br></div>';
|
77 |
+
echo '<h2 class="nav-tab-wrapper">';
|
78 |
+
foreach( $tabs as $tab => $name ){
|
79 |
+
$class = ( $tab == $current ) ? ' nav-tab-active' : '';
|
80 |
+
echo "<a class='nav-tab$class' href='edit.php?post_type=robo_gallery_table&page=robo-gallery-backup&tab=$tab'>$name</a>";
|
81 |
+
}
|
82 |
+
echo '</h2>';
|
83 |
}
|
84 |
+
|
85 |
+
$tab = 'export';
|
86 |
+
if ( isset( $_GET['tab'] ) ) $tab = $_GET['tab'];
|
87 |
+
if ( isset( $_POST['tab'] ) ) $tab = $_POST['tab'];
|
88 |
+
rbs_backup_tabs( $tab);
|
89 |
+
|
90 |
$today = date("Y_j_n");
|
91 |
+
|
92 |
+
switch ($tab) {
|
93 |
+
default:
|
94 |
+
case 'export':
|
95 |
?>
|
96 |
<table class="form-table">
|
97 |
<tbody>
|
98 |
+
<form method="post" enctype="multipart/form-data" class="rbs_download_backup_export" action="<?php echo admin_url().'edit.php?post_type=robo_gallery_table&page=robo-gallery-backup&tab='.$tab; ?>">
|
|
|
|
|
|
|
99 |
<tr>
|
100 |
<th scope="row"><label for="rbsGalleryBackupFilename"><?php _e('File Name', 'rbs_gallery'); ?></label></th>
|
101 |
<td>
|
102 |
<input type="text" class="regular-text" id="rbsGalleryBackupFilename" name="rbsGalleryBackupFilename" value="<?php echo 'export_'.$today.'.xml';?>" >
|
103 |
+
<p class="description" id="rbsBackupFile-description"><?php _e('After EXPORT copy images from server folder: {Wordpress folder}/wp-content/uploads to the new location by FTP'); ?></p>
|
104 |
</td>
|
105 |
</tr>
|
106 |
<tr>
|
108 |
<input type="submit" class="button button-primary " value="<?php _e('Download Backup'); ?>" name="rbsDownloadBackup">
|
109 |
<input type="hidden" name="rbsGalleryExport" value="1">
|
110 |
<?php wp_nonce_field( 'rbs-gallery-backup-export', 'rbs-gallery-backup' ); ?>
|
|
|
111 |
</td>
|
112 |
</tr>
|
|
|
113 |
</form>
|
114 |
+
</tbody>
|
115 |
+
</table>
|
116 |
+
<?php
|
117 |
+
break;
|
118 |
+
case 'import':
|
119 |
+
?>
|
120 |
+
<table class="form-table">
|
121 |
+
<tbody>
|
122 |
+
<form method="post" enctype="multipart/form-data" class="wp-upload-form" action="<?php echo admin_url().'edit.php?post_type=robo_gallery_table&page=robo-gallery-backup&tab='.$tab; ?>">
|
123 |
<tr>
|
124 |
+
<th scope="row"><label for="rbsGalleryBackupDuplicate"><?php _e('Duplicate', 'rbs_gallery'); ?></label></th>
|
|
|
|
|
|
|
125 |
<td>
|
126 |
+
<fieldset>
|
127 |
+
<legend class="screen-reader-text"><span><?php _e('Duplicate', 'rbs_gallery'); ?></span></legend>
|
128 |
+
<label for="rbsGalleryBackupDuplicate">
|
129 |
+
<input name="rbsGalleryBackupDuplicate" id="rbsGalleryBackupDuplicate" value="1" type="checkbox">
|
130 |
+
<?php _e('rewrite duplicate slug', 'rbs_gallery'); ?>
|
131 |
+
</label>
|
132 |
+
</fieldset>
|
133 |
+
</td>
|
134 |
+
</tr>
|
135 |
|
136 |
+
<tr>
|
137 |
+
<th scope="row"><label for="rbsBackupFile"><?php _e('Select backup file', 'rbs_gallery'); ?></label></th>
|
138 |
+
<td>
|
139 |
+
<label class="screen-reader-text" for="pluginzip">Import xml file</label>
|
140 |
+
<input type="file" name="rbsBackupFile" id="rbsBackupFile">
|
141 |
+
</td>
|
142 |
+
</tr>
|
143 |
+
<tr>
|
144 |
+
<td colspan="2">
|
145 |
+
<input type="submit" class="button button-primary " value="<?php _e('Upload XML'); ?>" name="rbsSubmitBackup">
|
146 |
</td>
|
147 |
</tr>
|
148 |
+
<?php wp_nonce_field( 'rbs-gallery-backup-import', 'rbs-gallery-backup' ); ?>
|
149 |
+
</form>
|
150 |
</tbody>
|
151 |
</table>
|
152 |
+
<?php } ?>
|
153 |
</div>
|
154 |
<?php
|
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.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -186,6 +186,14 @@ Just install it using regular Wordpress plugins installing mechanism. If you ha
|
|
186 |
|
187 |
You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
= How to change font size of the gallery image caption? =
|
190 |
|
191 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
@@ -193,95 +201,95 @@ In gallery settings you can enable custom caption settings where you can customi
|
|
193 |
= What can I do if some gallery interface elements in backend do not work properly? =
|
194 |
|
195 |
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.
|
|
|
|
|
196 |
|
197 |
-
|
198 |
|
199 |
-
|
200 |
|
201 |
-
|
202 |
|
203 |
-
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.
|
204 |
-
|
205 |
= Do you have some limits for images amount in gallery? =
|
206 |
|
207 |
No, we don't have any limits for amount of the images in gallery
|
208 |
|
209 |
-
= How to change quality of the gallery thumbnails? =
|
210 |
-
|
211 |
-
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
212 |
-
|
213 |
= How to use multi-category functionality of the gallery? =
|
214 |
|
215 |
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
|
216 |
|
217 |
-
= How to
|
218 |
|
219 |
-
|
220 |
|
221 |
-
=
|
222 |
|
223 |
-
|
224 |
|
225 |
-
= How to
|
226 |
|
227 |
-
|
228 |
|
229 |
-
=
|
230 |
|
231 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
|
233 |
= How to change text below image in lightbox ? =
|
234 |
|
235 |
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.
|
236 |
|
237 |
-
=
|
238 |
|
239 |
-
|
240 |
|
241 |
= Is it possible to have different settings for hover and static interface elements? =
|
242 |
|
243 |
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
244 |
|
245 |
-
= How to
|
246 |
-
|
247 |
-
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
|
248 |
|
249 |
-
|
250 |
|
251 |
-
|
252 |
|
253 |
-
|
254 |
|
255 |
-
|
256 |
|
257 |
-
|
258 |
|
259 |
-
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.
|
260 |
-
|
261 |
= Is it possible to turn off border of the gallery thumbnails? =
|
262 |
|
263 |
Yes, in gallery options you can turn on/off border option
|
264 |
|
265 |
-
=
|
266 |
|
267 |
-
|
268 |
|
269 |
-
=
|
270 |
|
271 |
-
|
272 |
|
273 |
-
=
|
274 |
|
275 |
-
|
|
|
|
|
|
|
|
|
276 |
|
277 |
= How to change font color of the gallery image caption? =
|
278 |
|
279 |
In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
|
280 |
|
281 |
-
= How to make shadow for the gallery thumbnails? =
|
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 |
= Is it possible to create direct link on the front end to the gallery? =
|
286 |
|
287 |
Yes, you can use generated direct link inside particular gallery settings
|
@@ -290,65 +298,41 @@ Yes, you can use generated direct link inside particular gallery settings
|
|
290 |
|
291 |
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
|
292 |
|
293 |
-
= How to change color of the gallery interface elements? =
|
294 |
-
|
295 |
-
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.
|
296 |
-
|
297 |
-
= How to change amount of images loading on gallery page? =
|
298 |
-
|
299 |
-
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
|
300 |
-
|
301 |
= How to load more function work? =
|
302 |
|
303 |
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
|
304 |
|
305 |
-
= Is it possible to customize gallery image caption ? =
|
306 |
-
|
307 |
-
In gallery settings you can find images manager where you can change settings of every image, one of the option it's caption of the image
|
308 |
-
|
309 |
-
= How to customize border of the gallery thumbnails? =
|
310 |
-
|
311 |
-
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
|
312 |
-
|
313 |
= How to change ordering of the gallery images? =
|
314 |
|
315 |
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
316 |
|
317 |
-
=
|
318 |
-
|
319 |
-
Yes, gallery have fade hover effect
|
320 |
-
|
321 |
-
= How I can create custom (grid) layout of the thumbnails? =
|
322 |
|
323 |
-
In
|
324 |
|
325 |
= How to customize hover effect? =
|
326 |
|
327 |
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
|
328 |
-
|
329 |
-
= Is it possible to use HTML in image description ? =
|
330 |
-
|
331 |
-
Yes, you can use HTML tags inside gallery image description field
|
332 |
|
333 |
-
= How
|
334 |
|
335 |
-
In gallery
|
336 |
|
337 |
-
= How to
|
338 |
|
339 |
-
When you
|
340 |
|
341 |
-
= How to
|
342 |
|
343 |
-
In gallery settings
|
344 |
|
345 |
-
= How to
|
346 |
|
347 |
-
In gallery settings
|
348 |
|
349 |
-
=
|
350 |
|
351 |
-
|
352 |
|
353 |
= How to define custom link for some gallery images? =
|
354 |
|
@@ -357,11 +341,27 @@ Every gallery image have additional fields where you can define custom link, tit
|
|
357 |
= How to define custom ALT for gallery image? =
|
358 |
|
359 |
When you open gallery images manager you can define alt for every gallery image there
|
|
|
|
|
|
|
|
|
360 |
|
361 |
= How to customize gallery hover effect shutter layout? =
|
362 |
|
363 |
In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which going to help you to build in some gallery images elements into hover
|
364 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
= How to customize gallery layouts for different screen resolutions? =
|
366 |
|
367 |
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.
|
@@ -378,6 +378,14 @@ In gallery settings you can find before/after text gallery field. This fields su
|
|
378 |
|
379 |
Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
|
380 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
= Is it possible to create target blank links? =
|
382 |
|
383 |
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 target blank field below link field of the gallery image.
|
@@ -390,14 +398,6 @@ Yes, it's possible to change transparency in gallery settings
|
|
390 |
|
391 |
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
|
392 |
|
393 |
-
= How to change width of the gallery thumbnails border? =
|
394 |
-
|
395 |
-
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.
|
396 |
-
|
397 |
-
= How to flip uploaded gallery image? =
|
398 |
-
|
399 |
-
When you open gallery images manager you'll find there image edit mode where you can flip source image
|
400 |
-
|
401 |
= How to change font style of the gallery image caption? =
|
402 |
|
403 |
In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
|
@@ -576,6 +576,10 @@ If any problem occurs, please contact us.
|
|
576 |
|
577 |
== Changelog ==
|
578 |
|
|
|
|
|
|
|
|
|
579 |
= 1.7.8 =
|
580 |
* Updated backup section functionality
|
581 |
* Added new custom backup filename field
|
@@ -894,6 +898,9 @@ If any problem occurs, please contact us.
|
|
894 |
|
895 |
== Upgrade Notice ==
|
896 |
|
|
|
|
|
|
|
897 |
= 1.7.8 =
|
898 |
Updated backup section functionality, added new custom backup filename field
|
899 |
|
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.7.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
186 |
|
187 |
You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
188 |
|
189 |
+
= Is it possible create gallery in Wordpress post with Gallery? =
|
190 |
+
|
191 |
+
Yes, you can insert gallery into post with shortcode tag
|
192 |
+
|
193 |
+
= How to define custom hover effect for some gallery thumbnail? =
|
194 |
+
|
195 |
+
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.
|
196 |
+
|
197 |
= How to change font size of the gallery image caption? =
|
198 |
|
199 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
201 |
= What can I do if some gallery interface elements in backend do not work properly? =
|
202 |
|
203 |
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.
|
204 |
+
|
205 |
+
= Where specify description of the gallery images? =
|
206 |
|
207 |
+
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
|
208 |
|
209 |
+
= How to make gallery thumbnails with rounded corners? =
|
210 |
|
211 |
+
In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
|
212 |
|
|
|
|
|
213 |
= Do you have some limits for images amount in gallery? =
|
214 |
|
215 |
No, we don't have any limits for amount of the images in gallery
|
216 |
|
|
|
|
|
|
|
|
|
217 |
= How to use multi-category functionality of the gallery? =
|
218 |
|
219 |
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
|
220 |
|
221 |
+
= How to upload images to the gallery? =
|
222 |
|
223 |
+
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.
|
224 |
|
225 |
+
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
226 |
|
227 |
+
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
228 |
|
229 |
+
= How to define video for some gallery image? =
|
230 |
|
231 |
+
Every gallery image have additional fields where you can define custom link, title, description. One of the link option allow you to define link type, for example video link. All this options you can find in gallery images manager, inside general gallery settings
|
232 |
|
233 |
+
= How to change quality of the gallery thumbnails? =
|
234 |
|
235 |
+
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
236 |
+
|
237 |
+
= How to generate shortcode for Wordpress page, post or widget? =
|
238 |
+
|
239 |
+
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
|
240 |
+
|
241 |
+
= How to define size of the gallery images thumbnails? =
|
242 |
+
|
243 |
+
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
|
244 |
|
245 |
= How to change text below image in lightbox ? =
|
246 |
|
247 |
In gallery setting you can select which text show below image in gallery lightbox. You can select Caption, Title or image Description as source for this field in gallery lightbox.
|
248 |
|
249 |
+
= Do you have some limit for images size in gallery? =
|
250 |
|
251 |
+
No, we don't have any limits for image size in our gallery.
|
252 |
|
253 |
= Is it possible to have different settings for hover and static interface elements? =
|
254 |
|
255 |
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
256 |
|
257 |
+
= How to make shadow for the gallery thumbnails? =
|
|
|
|
|
258 |
|
259 |
+
Shadows of the thumbnails you can customize in gallery settings. With gallery settings you can change size , color and position of the gallery thumbnails shadow
|
260 |
|
261 |
+
= How to hide titles of the gallery image in lightbox ? =
|
262 |
|
263 |
+
In lightbox section of the gallery settings you can find hide title option. If you enable it titles of the gallery images in lightbox will be turned off.
|
264 |
|
265 |
+
= How to change color of the gallery interface elements? =
|
266 |
|
267 |
+
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.
|
268 |
|
|
|
|
|
269 |
= Is it possible to turn off border of the gallery thumbnails? =
|
270 |
|
271 |
Yes, in gallery options you can turn on/off border option
|
272 |
|
273 |
+
= Where it's possible to define vertical and horizontal paddings? =
|
274 |
|
275 |
+
In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
|
276 |
|
277 |
+
= Is it possible to customize gallery image caption ? =
|
278 |
|
279 |
+
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
|
280 |
|
281 |
+
= Do you have some conflict in gallery back end? =
|
282 |
|
283 |
+
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.
|
284 |
+
|
285 |
+
= Is it possible to use HTML in image description ? =
|
286 |
+
|
287 |
+
Yes, you can use HTML tags inside gallery image description field
|
288 |
|
289 |
= How to change font color of the gallery image caption? =
|
290 |
|
291 |
In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
|
292 |
|
|
|
|
|
|
|
|
|
293 |
= Is it possible to create direct link on the front end to the gallery? =
|
294 |
|
295 |
Yes, you can use generated direct link inside particular gallery settings
|
298 |
|
299 |
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
|
300 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
= How to load more function work? =
|
302 |
|
303 |
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
|
304 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
= How to change ordering of the gallery images? =
|
306 |
|
307 |
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
308 |
|
309 |
+
= How to change font color of the gallery image description text? =
|
|
|
|
|
|
|
|
|
310 |
|
311 |
+
In gallery settings, when enabled custom hover settings you can customize style of the gallery image description text. In this settings you can change color of the text
|
312 |
|
313 |
= How to customize hover effect? =
|
314 |
|
315 |
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
|
|
|
|
|
|
|
|
|
316 |
|
317 |
+
= How I can create custom (grid) layout of the thumbnails? =
|
318 |
|
319 |
+
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
|
320 |
|
321 |
+
= How to insert gallery into Wordpress page or post? =
|
322 |
|
323 |
+
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
|
324 |
|
325 |
+
= How to change amount of images loading on gallery page? =
|
326 |
|
327 |
+
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
|
328 |
|
329 |
+
= How to customize border of the gallery thumbnails? =
|
330 |
|
331 |
+
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
|
332 |
|
333 |
+
= Do you have fade effect for the thumbnails hover? =
|
334 |
|
335 |
+
Yes, gallery have fade hover effect
|
336 |
|
337 |
= How to define custom link for some gallery images? =
|
338 |
|
341 |
= How to define custom ALT for gallery image? =
|
342 |
|
343 |
When you open gallery images manager you can define alt for every gallery image there
|
344 |
+
|
345 |
+
= How to change color of the gallery thumbnails border? =
|
346 |
+
|
347 |
+
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
|
348 |
|
349 |
= How to customize gallery hover effect shutter layout? =
|
350 |
|
351 |
In gallery hover settings you can enable template where you can fully customize layout of the shutter content using HTML tags, text and images. In template we have implemented some build in tags which going to help you to build in some gallery images elements into hover
|
352 |
|
353 |
+
= How to crop uploaded gallery image? =
|
354 |
+
|
355 |
+
When you open gallery images manager you'll find there image edit mode where you can crop source image
|
356 |
+
|
357 |
+
= How to enable lazy load in gallery options? =
|
358 |
+
|
359 |
+
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
|
360 |
+
|
361 |
+
= How to set description text below image in the lightbox? =
|
362 |
+
|
363 |
+
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.
|
364 |
+
|
365 |
= How to customize gallery layouts for different screen resolutions? =
|
366 |
|
367 |
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.
|
378 |
|
379 |
Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
|
380 |
|
381 |
+
= How to change width of the gallery thumbnails border? =
|
382 |
+
|
383 |
+
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.
|
384 |
+
|
385 |
+
= How to flip uploaded gallery image? =
|
386 |
+
|
387 |
+
When you open gallery images manager you'll find there image edit mode where you can flip source image
|
388 |
+
|
389 |
= Is it possible to create target blank links? =
|
390 |
|
391 |
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 target blank field below link field of the gallery image.
|
398 |
|
399 |
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
|
400 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
= How to change font style of the gallery image caption? =
|
402 |
|
403 |
In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
|
576 |
|
577 |
== Changelog ==
|
578 |
|
579 |
+
= 1.7.9 =
|
580 |
+
* Updated backup section interface
|
581 |
+
* Added new tabbed section for export / import galleries settings
|
582 |
+
|
583 |
= 1.7.8 =
|
584 |
* Updated backup section functionality
|
585 |
* Added new custom backup filename field
|
898 |
|
899 |
== Upgrade Notice ==
|
900 |
|
901 |
+
= 1.7.9 =
|
902 |
+
Updated backup section interface, added new tabbed section for export / import galleries settings
|
903 |
+
|
904 |
= 1.7.8 =
|
905 |
Updated backup section functionality, added new custom backup filename field
|
906 |
|
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.7.
|
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.7.
|
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.7.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.7.9');
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|