Version Description
- Updated backup section functionality
- Added full backup with images mode
- Backup create archive with settings and all gallery images inside
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 1.8.0 |
Comparing to | |
See all releases |
Code changes from version 1.7.13 to 1.8.0
- includes/extensions/backup/backup.class.php +59 -16
- includes/extensions/backup/backup.form.php +23 -10
- includes/extensions/backup/backup.init.php +41 -5
- readme.txt +108 -100
- robogallery.php +2 -2
includes/extensions/backup/backup.class.php
CHANGED
@@ -27,6 +27,7 @@ class rbsGalleryExport {
|
|
27 |
const TAG_POST_DATA = 'post_data';
|
28 |
const XML_DECLARATION = '<?xml version="1.0" encoding="utf-8" ?>';
|
29 |
|
|
|
30 |
/**
|
31 |
* Database connection
|
32 |
*
|
@@ -235,9 +236,29 @@ class rbsGalleryExport {
|
|
235 |
header('Expires: 0');
|
236 |
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
|
237 |
header('Pragma: public');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
}
|
|
|
239 |
|
240 |
-
public function exportPostsZip(array $args = array(), $fileName = 'export
|
241 |
{
|
242 |
$this->mode = self::MODE_EXPORT_ZIP;
|
243 |
|
@@ -245,29 +266,40 @@ class rbsGalleryExport {
|
|
245 |
if ($this->error) {
|
246 |
return false;
|
247 |
}
|
|
|
|
|
|
|
|
|
|
|
248 |
|
249 |
-
|
|
|
|
|
250 |
$this->clearArchive($archiveRootName);
|
251 |
if ($this->error) {
|
252 |
return false;
|
253 |
}
|
254 |
|
255 |
$zip = new ZipArchive();
|
|
|
256 |
if (0 == $this->archiveChunkSize) {
|
257 |
-
$archivePath = "{$this->archiveDir}{$archiveRootName}
|
|
|
258 |
$zip->open($archivePath, ZipArchive::CREATE);
|
259 |
|
260 |
-
$zip->addFromString($
|
261 |
foreach ($this->exportFiles as $exportFile) {
|
|
|
262 |
$zip->addFile($this->baseFilePath . $exportFile, $exportFile);
|
263 |
}
|
264 |
} else {
|
|
|
265 |
$count = 1;
|
266 |
$size = 0;
|
267 |
-
$archivePath = "{$this->archiveDir}{$archiveRootName}.{$count}
|
268 |
$zip->open($archivePath, ZipArchive::CREATE);
|
269 |
|
270 |
-
$zip->addFromString($
|
271 |
foreach ($this->exportFiles as $exportFile) {
|
272 |
$fileSize = filesize($this->baseFilePath . $exportFile);
|
273 |
if ($this->archiveChunkSize < $size + $fileSize) {
|
@@ -279,7 +311,7 @@ class rbsGalleryExport {
|
|
279 |
|
280 |
$count++;
|
281 |
$size = 0;
|
282 |
-
$archivePath = "{$this->archiveDir}{$archiveRootName}.{$count}
|
283 |
$zip->open($archivePath, ZipArchive::CREATE);
|
284 |
}
|
285 |
|
@@ -292,6 +324,12 @@ class rbsGalleryExport {
|
|
292 |
if ($this->error) {
|
293 |
return false;
|
294 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
|
296 |
return true;
|
297 |
}
|
@@ -440,7 +478,10 @@ class rbsGalleryExport {
|
|
440 |
$out .= $indent .self::SPACE4 . '</post_data>' . PHP_EOL;
|
441 |
|
442 |
if (self::MODE_EXPORT_ZIP == $this->mode) {
|
443 |
-
|
|
|
|
|
|
|
444 |
}
|
445 |
}
|
446 |
$out .= self::SPACE8 . '</attachments>' . PHP_EOL;
|
@@ -556,7 +597,7 @@ class rbsGalleryExport {
|
|
556 |
* @param string $archivePath
|
557 |
* @return array
|
558 |
*/
|
559 |
-
public function importPostsZip($archivePath)
|
560 |
{
|
561 |
$this->mode = self::MODE_IMPORT_ZIP;
|
562 |
|
@@ -584,8 +625,9 @@ class rbsGalleryExport {
|
|
584 |
$this->response['errors'][] = $this->error;
|
585 |
return $this->response;
|
586 |
}
|
587 |
-
|
588 |
-
$
|
|
|
589 |
$postsXmlFile = "{$archiveRootName}.xml";
|
590 |
if (!isset($this->archiveFiles[$postsXmlFile])) {
|
591 |
$this->response['errors'][] = __("Can't find import xml file in archive.");
|
@@ -786,7 +828,7 @@ class rbsGalleryExport {
|
|
786 |
|
787 |
if (self::MODE_IMPORT_ZIP == $this->mode && isset($postMeta[self::POSTMETA_ATTACHED_FILE])) {
|
788 |
$oldAttachmentFile = $postMeta[self::POSTMETA_ATTACHED_FILE];
|
789 |
-
|
790 |
|
791 |
if (!$newAttachmentFile) {
|
792 |
return null;
|
@@ -794,9 +836,10 @@ class rbsGalleryExport {
|
|
794 |
}
|
795 |
|
796 |
unset($post['ID']);
|
797 |
-
|
798 |
-
|
799 |
-
|
|
|
800 |
$result = wp_insert_post($post, true);
|
801 |
if (is_wp_error($result)) {
|
802 |
$this->error = sprintf(
|
@@ -811,7 +854,7 @@ class rbsGalleryExport {
|
|
811 |
$this->mappingAttachmentIds[$oldPostId] = $post['ID'];
|
812 |
|
813 |
if ($newAttachmentFile) {
|
814 |
-
$postMeta[self::POSTMETA_ATTACHED_FILE] = $newAttachmentFile;
|
815 |
$postMeta[self::POSTMETA_ATTACHMENT_METADATA] = serialize(wp_generate_attachment_metadata(
|
816 |
$post['ID'],
|
817 |
$this->baseFilePath . $newAttachmentFile
|
27 |
const TAG_POST_DATA = 'post_data';
|
28 |
const XML_DECLARATION = '<?xml version="1.0" encoding="utf-8" ?>';
|
29 |
|
30 |
+
public $archivePath ;
|
31 |
/**
|
32 |
* Database connection
|
33 |
*
|
236 |
header('Expires: 0');
|
237 |
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
|
238 |
header('Pragma: public');
|
239 |
+
}
|
240 |
+
|
241 |
+
/**
|
242 |
+
* Send headers for force ziip file download
|
243 |
+
*
|
244 |
+
* @param string $fileName
|
245 |
+
* @return void
|
246 |
+
*/
|
247 |
+
protected function sendZipDownloadHeader($fileName, $filePath)
|
248 |
+
{
|
249 |
+
header("Pragma: public");
|
250 |
+
header("Expires: 0");
|
251 |
+
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
|
252 |
+
header("Cache-Control: public");
|
253 |
+
header("Content-Description: File Transfer");
|
254 |
+
header("Content-type: application/octet-stream");
|
255 |
+
header("Content-Disposition: attachment; filename=\"".$fileName."\"");
|
256 |
+
header("Content-Transfer-Encoding: binary");
|
257 |
+
header("Content-Length: ".filesize($filePath));
|
258 |
}
|
259 |
+
|
260 |
|
261 |
+
public function exportPostsZip(array $args = array(), $fileName = 'export')
|
262 |
{
|
263 |
$this->mode = self::MODE_EXPORT_ZIP;
|
264 |
|
266 |
if ($this->error) {
|
267 |
return false;
|
268 |
}
|
269 |
+
|
270 |
+
if (!is_dir($this->archiveDir) && !mkdir($this->archiveDir, 0755, true)) {
|
271 |
+
$this->error = __("Can't create directory for archive file.");
|
272 |
+
return false;
|
273 |
+
}
|
274 |
|
275 |
+
//$archiveRootName = str_replace('.xml' , '', $fileName);
|
276 |
+
$archiveRootName = $fileName;
|
277 |
+
$fileNameXml = str_replace('.zip' , '.xml', $fileName);
|
278 |
$this->clearArchive($archiveRootName);
|
279 |
if ($this->error) {
|
280 |
return false;
|
281 |
}
|
282 |
|
283 |
$zip = new ZipArchive();
|
284 |
+
$typeExport = 0;
|
285 |
if (0 == $this->archiveChunkSize) {
|
286 |
+
$archivePath = "{$this->archiveDir}{$archiveRootName}";
|
287 |
+
|
288 |
$zip->open($archivePath, ZipArchive::CREATE);
|
289 |
|
290 |
+
$zip->addFromString( $fileNameXml, $postsXml);
|
291 |
foreach ($this->exportFiles as $exportFile) {
|
292 |
+
//echo $this->baseFilePath . $exportFile;
|
293 |
$zip->addFile($this->baseFilePath . $exportFile, $exportFile);
|
294 |
}
|
295 |
} else {
|
296 |
+
$typeExport = 1;
|
297 |
$count = 1;
|
298 |
$size = 0;
|
299 |
+
$archivePath = "{$this->archiveDir}{$archiveRootName}.{$count}";
|
300 |
$zip->open($archivePath, ZipArchive::CREATE);
|
301 |
|
302 |
+
$zip->addFromString($fileNameXml, $postsXml);
|
303 |
foreach ($this->exportFiles as $exportFile) {
|
304 |
$fileSize = filesize($this->baseFilePath . $exportFile);
|
305 |
if ($this->archiveChunkSize < $size + $fileSize) {
|
311 |
|
312 |
$count++;
|
313 |
$size = 0;
|
314 |
+
$archivePath = "{$this->archiveDir}{$archiveRootName}.{$count}";
|
315 |
$zip->open($archivePath, ZipArchive::CREATE);
|
316 |
}
|
317 |
|
324 |
if ($this->error) {
|
325 |
return false;
|
326 |
}
|
327 |
+
$this->archivePath = $archivePath;
|
328 |
+
|
329 |
+
if( !$typeExport ){
|
330 |
+
$this->sendZipDownloadHeader( $archiveRootName, $archivePath );
|
331 |
+
readfile( $archivePath );
|
332 |
+
}
|
333 |
|
334 |
return true;
|
335 |
}
|
478 |
$out .= $indent .self::SPACE4 . '</post_data>' . PHP_EOL;
|
479 |
|
480 |
if (self::MODE_EXPORT_ZIP == $this->mode) {
|
481 |
+
|
482 |
+
//$this->exportFiles[] = trim(str_replace($this->baseFileUrl, '', $attachment['guid']), '/');
|
483 |
+
$attachmentFile = get_post_meta($attachment['ID'], self::POSTMETA_ATTACHED_FILE, true);
|
484 |
+
$this->exportFiles[] = $attachmentFile;
|
485 |
}
|
486 |
}
|
487 |
$out .= self::SPACE8 . '</attachments>' . PHP_EOL;
|
597 |
* @param string $archivePath
|
598 |
* @return array
|
599 |
*/
|
600 |
+
public function importPostsZip($archivePath, $realFileName= '')
|
601 |
{
|
602 |
$this->mode = self::MODE_IMPORT_ZIP;
|
603 |
|
625 |
$this->response['errors'][] = $this->error;
|
626 |
return $this->response;
|
627 |
}
|
628 |
+
$fileNameXml = basename($archivePath);
|
629 |
+
if(isset($realFileName) && $realFileName ) $fileNameXml = $realFileName;
|
630 |
+
$archiveRootName = preg_replace('/(\.[0-9]+)?\.zip$/', '', $fileNameXml);
|
631 |
$postsXmlFile = "{$archiveRootName}.xml";
|
632 |
if (!isset($this->archiveFiles[$postsXmlFile])) {
|
633 |
$this->response['errors'][] = __("Can't find import xml file in archive.");
|
828 |
|
829 |
if (self::MODE_IMPORT_ZIP == $this->mode && isset($postMeta[self::POSTMETA_ATTACHED_FILE])) {
|
830 |
$oldAttachmentFile = $postMeta[self::POSTMETA_ATTACHED_FILE];
|
831 |
+
$newAttachmentFile = $this->importFile($oldAttachmentFile);
|
832 |
|
833 |
if (!$newAttachmentFile) {
|
834 |
return null;
|
836 |
}
|
837 |
|
838 |
unset($post['ID']);
|
839 |
+
|
840 |
+
|
841 |
+
|
842 |
+
unset($post['guid']);
|
843 |
$result = wp_insert_post($post, true);
|
844 |
if (is_wp_error($result)) {
|
845 |
$this->error = sprintf(
|
854 |
$this->mappingAttachmentIds[$oldPostId] = $post['ID'];
|
855 |
|
856 |
if ($newAttachmentFile) {
|
857 |
+
$postMeta[self::POSTMETA_ATTACHED_FILE] = str_replace(DIRECTORY_SEPARATOR, '/', $newAttachmentFile);
|
858 |
$postMeta[self::POSTMETA_ATTACHMENT_METADATA] = serialize(wp_generate_attachment_metadata(
|
859 |
$post['ID'],
|
860 |
$this->baseFilePath . $newAttachmentFile
|
includes/extensions/backup/backup.form.php
CHANGED
@@ -33,19 +33,32 @@ if(!function_exists('rbs_backup_error_message')){
|
|
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 |
-
|
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 |
|
44 |
if(isset($_POST['rbsGalleryBackupDuplicate']) && $_POST['rbsGalleryBackupDuplicate'] ){
|
45 |
$export->duplicate = 1;
|
46 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
-
$result = $export->importPostsXml($tmp_name);
|
49 |
|
50 |
echo '<div class="card">';
|
51 |
if( isset($result['errors']) && count($result['errors']) ){
|
@@ -78,10 +91,10 @@ if(!function_exists('rbs_backup_error_message')){
|
|
78 |
echo '</div>';
|
79 |
//print_r($result);
|
80 |
} else {
|
81 |
-
echo rbs_backup_error_message('Error: please check backup
|
82 |
}
|
83 |
} else {
|
84 |
-
echo rbs_backup_error_message('Error: check secure');
|
85 |
}
|
86 |
}
|
87 |
if(!function_exists('rbs_backup_tabs')){
|
@@ -121,7 +134,7 @@ switch ($tab) {
|
|
121 |
|
122 |
<tr>
|
123 |
<td colspan="2">
|
124 |
-
<input type="submit"
|
125 |
<input type="hidden" name="rbsGalleryFullExport" value="1">
|
126 |
<?php wp_nonce_field( 'rbs-gallery-backup-export', 'rbs-gallery-full-backup' ); ?>
|
127 |
</td>
|
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 |
+
|
|
|
|
|
|
|
|
|
|
|
37 |
$export = new rbsGalleryExport('robo_gallery_table');
|
38 |
|
39 |
if(isset($_POST['rbsGalleryBackupDuplicate']) && $_POST['rbsGalleryBackupDuplicate'] ){
|
40 |
$export->duplicate = 1;
|
41 |
}
|
42 |
+
//echo $tmp_name;
|
43 |
+
if( isset($_FILES['rbsBackupFile']['name']) && $_FILES['rbsBackupFile']['name'] ){
|
44 |
+
$realName = $_FILES['rbsBackupFile']['name'];
|
45 |
+
$info = pathinfo( $realName );
|
46 |
+
if (isset($info["extension"]) && $info["extension"] ) {
|
47 |
+
//echo $info["extension"];
|
48 |
+
switch ( strtolower( $info["extension"] ) ) {
|
49 |
+
case 'zip':
|
50 |
+
$result = $export->importPostsZip($tmp_name, $realName);
|
51 |
+
break;
|
52 |
+
|
53 |
+
case 'xml':
|
54 |
+
$result = $export->importPostsXml($tmp_name);
|
55 |
+
break;
|
56 |
+
default:
|
57 |
+
$result['errors'] = 'Error: please check backup file';
|
58 |
+
}
|
59 |
+
} else $result['errors'] = 'Error: please check backup file';
|
60 |
+
} else $result['errors'] = 'Error: please check backup file';
|
61 |
|
|
|
62 |
|
63 |
echo '<div class="card">';
|
64 |
if( isset($result['errors']) && count($result['errors']) ){
|
91 |
echo '</div>';
|
92 |
//print_r($result);
|
93 |
} else {
|
94 |
+
echo rbs_backup_error_message( __('Error: please check backup file', 'rbs_gallery') );
|
95 |
}
|
96 |
} else {
|
97 |
+
echo rbs_backup_error_message( __('Error: check secure', 'rbs_gallery') );
|
98 |
}
|
99 |
}
|
100 |
if(!function_exists('rbs_backup_tabs')){
|
134 |
|
135 |
<tr>
|
136 |
<td colspan="2">
|
137 |
+
<input type="submit" class="button button-primary " value="<?php _e('Download Full Backup'); ?>" name="rbsDownloadFullBackup">
|
138 |
<input type="hidden" name="rbsGalleryFullExport" value="1">
|
139 |
<?php wp_nonce_field( 'rbs-gallery-backup-export', 'rbs-gallery-full-backup' ); ?>
|
140 |
</td>
|
includes/extensions/backup/backup.init.php
CHANGED
@@ -23,19 +23,55 @@ if(!function_exists('robo_gallery_backup_submenu_page')){
|
|
23 |
}
|
24 |
|
25 |
/* backup export + */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
if(!function_exists('rbs_gallery_export')){
|
27 |
function rbs_gallery_export(){
|
28 |
if(isset($_POST['rbsGalleryExport']) && $_POST['rbsGalleryExport']==1 && check_admin_referer('rbs-gallery-backup-export', 'rbs-gallery-backup') ){
|
29 |
-
|
30 |
rbs_gallery_include('backup.class.php', plugin_dir_path( __FILE__ ) );
|
|
|
31 |
$export = new rbsGalleryExport('robo_gallery_table');
|
32 |
$export->setArchiveDir(ABSPATH . 'tmp');
|
33 |
-
$export->isExportFiles = true;
|
34 |
|
35 |
-
|
36 |
-
$exportFileName = 'export_'
|
37 |
-
if( isset($_POST['rbsGalleryBackupFilename']) && $_POST['rbsGalleryBackupFilename'] )
|
38 |
$exportFileName = sanitize_file_name($_POST['rbsGalleryBackupFilename']);
|
|
|
39 |
|
40 |
$info = pathinfo($exportFileName);
|
41 |
if (!$info["extension"]){
|
23 |
}
|
24 |
|
25 |
/* backup export + */
|
26 |
+
if(!function_exists('rbs_gallery_full_export')){
|
27 |
+
function rbs_gallery_full_export(){
|
28 |
+
if(isset($_POST['rbsGalleryFullExport']) && $_POST['rbsGalleryFullExport']==1 && check_admin_referer('rbs-gallery-backup-export', 'rbs-gallery-full-backup') ){
|
29 |
+
|
30 |
+
rbs_gallery_include('backup.class.php', plugin_dir_path( __FILE__ ) );
|
31 |
+
|
32 |
+
$export = new rbsGalleryExport('robo_gallery_table');
|
33 |
+
$export->setArchiveDir(ABSPATH . 'tmp');
|
34 |
+
|
35 |
+
$exportFileName = 'export_'.date("Y_j_n");
|
36 |
+
if( isset($_POST['rbsGalleryBackupFullFilename']) && $_POST['rbsGalleryBackupFullFilename'] ){
|
37 |
+
$exportFileName = sanitize_file_name($_POST['rbsGalleryBackupFullFilename']);
|
38 |
+
}
|
39 |
+
|
40 |
+
$info = pathinfo($exportFileName);
|
41 |
+
if (!$info["extension"]){
|
42 |
+
$exportFileName.='.zip';
|
43 |
+
}
|
44 |
+
|
45 |
+
$isExport = $export->exportPostsZip( array('post_type' => ROBO_GALLERY_TYPE_POST), $exportFileName);
|
46 |
+
//$isExport = $export->exportPostsXml( array('post_type' => ROBO_GALLERY_TYPE_POST), $exportFileName );
|
47 |
+
if(!$isExport) {
|
48 |
+
// show pretty error
|
49 |
+
var_dump($export->getError());
|
50 |
+
} else {
|
51 |
+
|
52 |
+
//echo $export->archivePath;
|
53 |
+
//wp_redirect(get_permalink( 'edit.php?post_type=robo_gallery_table&page=robo-gallery-full-backup' ));
|
54 |
+
}
|
55 |
+
die();
|
56 |
+
}
|
57 |
+
}
|
58 |
+
add_action( 'init', 'rbs_gallery_full_export' );
|
59 |
+
}
|
60 |
+
|
61 |
if(!function_exists('rbs_gallery_export')){
|
62 |
function rbs_gallery_export(){
|
63 |
if(isset($_POST['rbsGalleryExport']) && $_POST['rbsGalleryExport']==1 && check_admin_referer('rbs-gallery-backup-export', 'rbs-gallery-backup') ){
|
64 |
+
|
65 |
rbs_gallery_include('backup.class.php', plugin_dir_path( __FILE__ ) );
|
66 |
+
|
67 |
$export = new rbsGalleryExport('robo_gallery_table');
|
68 |
$export->setArchiveDir(ABSPATH . 'tmp');
|
|
|
69 |
|
70 |
+
|
71 |
+
$exportFileName = 'export_'.date("Y_j_n").'.xml';
|
72 |
+
if( isset($_POST['rbsGalleryBackupFilename']) && $_POST['rbsGalleryBackupFilename'] ){
|
73 |
$exportFileName = sanitize_file_name($_POST['rbsGalleryBackupFilename']);
|
74 |
+
}
|
75 |
|
76 |
$info = pathinfo($exportFileName);
|
77 |
if (!$info["extension"]){
|
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 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -201,94 +201,110 @@ No, we don't have any limits for amount of the images in gallery
|
|
201 |
= How to define custom hover effect for some gallery thumbnail? =
|
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 |
-
|
206 |
|
207 |
-
|
208 |
-
|
209 |
-
= What can I do if some gallery interface elements in backend do not work properly? =
|
210 |
|
211 |
-
|
212 |
|
213 |
-
=
|
214 |
|
215 |
-
|
216 |
|
217 |
-
=
|
218 |
|
219 |
-
|
220 |
|
221 |
-
=
|
222 |
|
223 |
-
|
224 |
|
225 |
= How to generate shortcode for Wordpress page, post or widget? =
|
226 |
|
227 |
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
|
228 |
|
229 |
-
= How to change text below image in lightbox ? =
|
230 |
-
|
231 |
-
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.
|
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 |
-
=
|
238 |
|
239 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
|
241 |
= How to change font color of the gallery image description text? =
|
242 |
|
243 |
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
|
244 |
|
245 |
-
=
|
|
|
|
|
246 |
|
247 |
-
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.
|
248 |
-
|
249 |
= How to make shadow for the gallery thumbnails? =
|
250 |
|
251 |
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
|
252 |
|
253 |
-
=
|
254 |
|
255 |
-
|
256 |
|
257 |
-
=
|
258 |
|
259 |
-
|
|
|
|
|
|
|
|
|
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
|
266 |
-
|
267 |
-
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
|
268 |
|
269 |
-
|
|
|
|
|
270 |
|
271 |
-
In gallery
|
272 |
|
273 |
-
=
|
274 |
|
275 |
-
In
|
276 |
|
277 |
-
= How to
|
278 |
|
279 |
-
|
280 |
|
281 |
-
=
|
282 |
|
283 |
-
|
284 |
|
285 |
-
= How to change color of the gallery
|
286 |
|
287 |
-
|
288 |
|
289 |
-
=
|
290 |
|
291 |
-
|
292 |
|
293 |
= Do you have fade effect for the thumbnails hover? =
|
294 |
|
@@ -298,49 +314,41 @@ Yes, gallery have fade hover effect
|
|
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
|
310 |
-
|
311 |
-
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
|
312 |
-
|
313 |
-
= How to change color of the gallery thumbnails border? =
|
314 |
|
315 |
-
|
316 |
|
317 |
= How to customize hover effect? =
|
318 |
|
319 |
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
|
320 |
|
321 |
-
=
|
322 |
|
323 |
-
In gallery settings you
|
324 |
|
325 |
-
=
|
326 |
|
327 |
-
|
328 |
|
329 |
= How to customize gallery hover effect shutter layout? =
|
330 |
|
331 |
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
|
332 |
|
333 |
-
= How to change amount of images loading on gallery page? =
|
334 |
-
|
335 |
-
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
|
336 |
-
|
337 |
= How to insert gallery into Wordpress page or post? =
|
338 |
|
339 |
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
|
340 |
|
341 |
-
= How to
|
342 |
|
343 |
-
In gallery settings you can find
|
|
|
|
|
|
|
|
|
344 |
|
345 |
= How to crop uploaded gallery image? =
|
346 |
|
@@ -350,10 +358,6 @@ When you open gallery images manager you'll find there image edit mode where you
|
|
350 |
|
351 |
When you open gallery images manager you can define alt for every gallery image there
|
352 |
|
353 |
-
= How to customize border of the gallery thumbnails? =
|
354 |
-
|
355 |
-
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
|
356 |
-
|
357 |
= How I can create custom (grid) layout of the thumbnails? =
|
358 |
|
359 |
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
|
@@ -362,6 +366,18 @@ In our gallery we implemented layout based on columns amount. So you can general
|
|
362 |
|
363 |
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.
|
364 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
= How to change transparency of the gallery thumbnails border? =
|
366 |
|
367 |
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
|
@@ -370,41 +386,33 @@ When you enable border in gallery settings you will see multiply options for cus
|
|
370 |
|
371 |
In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
|
372 |
|
373 |
-
=
|
374 |
-
|
375 |
-
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.
|
376 |
-
|
377 |
-
= How to add text before and after gallery? =
|
378 |
|
379 |
-
|
380 |
|
381 |
= Where to change settings of the image of the gallery? =
|
382 |
|
383 |
Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
|
384 |
|
385 |
-
= How
|
386 |
-
|
387 |
-
When you open gallery images manager you'll find there image edit mode where you can flip source image
|
388 |
-
|
389 |
-
= How to rotate uploaded gallery image? =
|
390 |
|
391 |
-
|
392 |
|
393 |
-
= How to
|
394 |
|
395 |
-
In gallery
|
396 |
|
397 |
-
=
|
398 |
|
399 |
-
|
400 |
|
401 |
-
=
|
402 |
|
403 |
-
|
404 |
|
405 |
-
= How to change font
|
406 |
|
407 |
-
In gallery settings
|
408 |
|
409 |
= How to make gallery with no space between thumbnails of the gallery? =
|
410 |
|
@@ -418,14 +426,6 @@ You can select border color, background color and color of the icon, size of the
|
|
418 |
|
419 |
When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border style. You can select one value from pre-defined list
|
420 |
|
421 |
-
= How to change font size of the gallery image description text? =
|
422 |
-
|
423 |
-
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
|
424 |
-
|
425 |
-
= 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? =
|
426 |
-
|
427 |
-
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.
|
428 |
-
|
429 |
= How many icons you have in build in icons library? =
|
430 |
|
431 |
In build library of the icons in gallery you can find 533 icons
|
@@ -446,10 +446,6 @@ In our gallery implemented options which make you able to make gallery thumbnail
|
|
446 |
|
447 |
Yes, you can change gallery lightbox background transparency in gallery settings. Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block. When you open color selector for the gallery lightbox background you'll see there additional slider option for transparency value.
|
448 |
|
449 |
-
= Is it possible to customize load more button caption? =
|
450 |
-
|
451 |
-
Yes, all labels of the front end interface of the gallery is customizable. Label of the load more button could be edit in admin section
|
452 |
-
|
453 |
= Which tags build in shutter of gallery hover template customization? =
|
454 |
|
455 |
For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
|
@@ -458,6 +454,10 @@ For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
|
|
458 |
|
459 |
When you open gallery settings you can see there hover options section where we implemented settings for every hover button. Here you can select icons for buttons and style for this icon
|
460 |
|
|
|
|
|
|
|
|
|
461 |
= How to turn off social buttons in gallery lightbox? =
|
462 |
|
463 |
When you open gallery settings you can find there gallery lightbox settings block, where you can turn off social buttons in gallery lightbox on the front end.
|
@@ -482,6 +482,10 @@ When you open gallery settings you can find there gallery lightbox settings bloc
|
|
482 |
|
483 |
Our gallery do not require any special permissions for installation of the gallery or during upload of the gallery images. All requirements are basic: our gallery have the same requirements as Wordpress have.
|
484 |
|
|
|
|
|
|
|
|
|
485 |
= How to change amount of the columns in gallery layout? =
|
486 |
|
487 |
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.
|
@@ -490,10 +494,6 @@ In gallery general settings you can find gallery thumbnails columns options whic
|
|
490 |
|
491 |
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.
|
492 |
|
493 |
-
= Is it possible to change color of the hovered image in gallery? =
|
494 |
-
|
495 |
-
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.
|
496 |
-
|
497 |
= Is it possible to insert video as gallery link? =
|
498 |
|
499 |
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.
|
@@ -576,6 +576,11 @@ If any problem occurs, please contact us.
|
|
576 |
|
577 |
== Changelog ==
|
578 |
|
|
|
|
|
|
|
|
|
|
|
579 |
= 1.7.13 =
|
580 |
* Updated backup section functionality
|
581 |
* Added new full backup section
|
@@ -916,6 +921,9 @@ If any problem occurs, please contact us.
|
|
916 |
|
917 |
== Upgrade Notice ==
|
918 |
|
|
|
|
|
|
|
919 |
= 1.7.13 =
|
920 |
Updated backup section functionality, added new full backup section
|
921 |
|
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.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
201 |
= How to define custom hover effect for some gallery thumbnail? =
|
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 |
+
= How to change font size of the gallery image caption? =
|
206 |
|
207 |
+
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
208 |
|
209 |
+
= 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 |
+
= Is it possible to have different settings for hover and static interface elements? =
|
214 |
|
215 |
+
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
216 |
|
217 |
+
= Is it possible to turn off border of the gallery thumbnails? =
|
218 |
|
219 |
+
Yes, in gallery options you can turn on/off border option
|
220 |
|
221 |
+
= What can I do if some gallery interface elements in backend do not work properly? =
|
222 |
|
223 |
+
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.
|
224 |
|
225 |
= How to generate shortcode for Wordpress page, post or widget? =
|
226 |
|
227 |
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
|
228 |
|
|
|
|
|
|
|
|
|
229 |
= How to change quality of the gallery thumbnails? =
|
230 |
|
231 |
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
232 |
|
233 |
+
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
234 |
|
235 |
+
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
236 |
+
|
237 |
+
= How to define custom link for some gallery images? =
|
238 |
+
|
239 |
+
Every gallery image have additional fields where you can define custom link, title, description. All this options you can find in gallery images manager, inside general gallery settings
|
240 |
+
|
241 |
+
= How to hide titles of the gallery image in lightbox ? =
|
242 |
+
|
243 |
+
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.
|
244 |
+
|
245 |
+
= Is it possible to use HTML in image description ? =
|
246 |
+
|
247 |
+
Yes, you can use HTML tags inside gallery image description field
|
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 |
= How to change font color of the gallery image description text? =
|
254 |
|
255 |
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
|
256 |
|
257 |
+
= How to define size of the gallery images thumbnails? =
|
258 |
+
|
259 |
+
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
|
260 |
|
|
|
|
|
261 |
= How to make shadow for the gallery thumbnails? =
|
262 |
|
263 |
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
|
264 |
|
265 |
+
= Where specify description of the gallery images? =
|
266 |
|
267 |
+
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
|
268 |
|
269 |
+
= How to use multi-category functionality of the gallery? =
|
270 |
|
271 |
+
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
|
272 |
+
|
273 |
+
= Is it possible to customize gallery image caption ? =
|
274 |
+
|
275 |
+
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
|
276 |
|
277 |
= How to upload images to the gallery? =
|
278 |
|
279 |
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.
|
280 |
|
281 |
+
= How to change text below image in lightbox ? =
|
|
|
|
|
282 |
|
283 |
+
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.
|
284 |
+
|
285 |
+
= How to load more function work? =
|
286 |
|
287 |
+
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
|
288 |
|
289 |
+
= Where it's possible to define vertical and horizontal paddings? =
|
290 |
|
291 |
+
In gallery settings you can define horizontal and vertical paddings between gallery thumbnails
|
292 |
|
293 |
+
= How to change width of the gallery thumbnails border? =
|
294 |
|
295 |
+
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.
|
296 |
|
297 |
+
= Is it possible to create direct link on the front end to the gallery? =
|
298 |
|
299 |
+
Yes, you can use generated direct link inside particular gallery settings
|
300 |
|
301 |
+
= How to change color of the gallery thumbnails border? =
|
302 |
|
303 |
+
When you enable border in gallery settings you will see multiply options for customization of the border. One from this options it's border color. You can select color using color selector
|
304 |
|
305 |
+
= Do you have some conflict in gallery back end? =
|
306 |
|
307 |
+
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.
|
308 |
|
309 |
= Do you have fade effect for the thumbnails hover? =
|
310 |
|
314 |
|
315 |
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
|
316 |
|
|
|
|
|
|
|
|
|
317 |
= How to change ordering of the gallery images? =
|
318 |
|
319 |
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
320 |
|
321 |
+
= How to change color of the gallery interface elements? =
|
|
|
|
|
|
|
|
|
322 |
|
323 |
+
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.
|
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 |
+
= How to change amount of images loading on gallery page? =
|
330 |
|
331 |
+
In gallery settings we have few options which makes you able to select amount of the images for the first load and for load more action
|
332 |
|
333 |
+
= How to enable lazy load in gallery options? =
|
334 |
|
335 |
+
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
|
336 |
|
337 |
= How to customize gallery hover effect shutter layout? =
|
338 |
|
339 |
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
|
340 |
|
|
|
|
|
|
|
|
|
341 |
= How to insert gallery into Wordpress page or post? =
|
342 |
|
343 |
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
|
344 |
|
345 |
+
= How to customize border of the gallery thumbnails? =
|
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 set description text below image in the lightbox? =
|
350 |
+
|
351 |
+
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.
|
352 |
|
353 |
= How to crop uploaded gallery image? =
|
354 |
|
358 |
|
359 |
When you open gallery images manager you can define alt for every gallery image there
|
360 |
|
|
|
|
|
|
|
|
|
361 |
= How I can create custom (grid) layout of the thumbnails? =
|
362 |
|
363 |
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
|
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.
|
368 |
|
369 |
+
= How to add text before and after gallery? =
|
370 |
+
|
371 |
+
In gallery settings you can find before/after text gallery field. This fields support HTML tags.
|
372 |
+
|
373 |
+
= How to rotate uploaded gallery image? =
|
374 |
+
|
375 |
+
When you open gallery images manager you'll find there image edit mode where you can rotate source image
|
376 |
+
|
377 |
+
= Is it possible to change transparency of the hover shutter? =
|
378 |
+
|
379 |
+
Yes, it's possible to change transparency in gallery settings
|
380 |
+
|
381 |
= How to change transparency of the gallery thumbnails border? =
|
382 |
|
383 |
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
|
386 |
|
387 |
In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
|
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.
|
392 |
|
393 |
= Where to change settings of the image of the gallery? =
|
394 |
|
395 |
Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
|
396 |
|
397 |
+
= 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? =
|
|
|
|
|
|
|
|
|
398 |
|
399 |
+
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.
|
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
|
404 |
|
405 |
+
= How to flip uploaded gallery image? =
|
406 |
|
407 |
+
When you open gallery images manager you'll find there image edit mode where you can flip source image
|
408 |
|
409 |
+
= How to enable icons on gallery hover shutter? =
|
410 |
|
411 |
+
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
|
412 |
|
413 |
+
= How to change font size of the gallery image description text? =
|
414 |
|
415 |
+
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
|
416 |
|
417 |
= How to make gallery with no space between thumbnails of the gallery? =
|
418 |
|
426 |
|
427 |
When you enable border in gallery settings you will see multiply options for customization of the border. One of the options it's border style. You can select one value from pre-defined list
|
428 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
429 |
= How many icons you have in build in icons library? =
|
430 |
|
431 |
In build library of the icons in gallery you can find 533 icons
|
446 |
|
447 |
Yes, you can change gallery lightbox background transparency in gallery settings. Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block. When you open color selector for the gallery lightbox background you'll see there additional slider option for transparency value.
|
448 |
|
|
|
|
|
|
|
|
|
449 |
= Which tags build in shutter of gallery hover template customization? =
|
450 |
|
451 |
For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
|
454 |
|
455 |
When you open gallery settings you can see there hover options section where we implemented settings for every hover button. Here you can select icons for buttons and style for this icon
|
456 |
|
457 |
+
= Is it possible to customize load more button caption? =
|
458 |
+
|
459 |
+
Yes, all labels of the front end interface of the gallery is customizable. Label of the load more button could be edit in admin section
|
460 |
+
|
461 |
= How to turn off social buttons in gallery lightbox? =
|
462 |
|
463 |
When you open gallery settings you can find there gallery lightbox settings block, where you can turn off social buttons in gallery lightbox on the front end.
|
482 |
|
483 |
Our gallery do not require any special permissions for installation of the gallery or during upload of the gallery images. All requirements are basic: our gallery have the same requirements as Wordpress have.
|
484 |
|
485 |
+
= Is it possible to change color of the hovered image in gallery? =
|
486 |
+
|
487 |
+
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.
|
488 |
+
|
489 |
= How to change amount of the columns in gallery layout? =
|
490 |
|
491 |
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.
|
494 |
|
495 |
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.
|
496 |
|
|
|
|
|
|
|
|
|
497 |
= Is it possible to insert video as gallery link? =
|
498 |
|
499 |
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.
|
576 |
|
577 |
== Changelog ==
|
578 |
|
579 |
+
= 1.8.0 =
|
580 |
+
* Updated backup section functionality
|
581 |
+
* Added full backup with images mode
|
582 |
+
* Backup create archive with settings and all gallery images inside
|
583 |
+
|
584 |
= 1.7.13 =
|
585 |
* Updated backup section functionality
|
586 |
* Added new full backup section
|
921 |
|
922 |
== Upgrade Notice ==
|
923 |
|
924 |
+
= 1.8.0 =
|
925 |
+
Added full backup with images mode, backup create archive with settings and all gallery images inside
|
926 |
+
|
927 |
= 1.7.13 =
|
928 |
Updated backup section functionality, added new full backup section
|
929 |
|
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.
|
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.
|
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.0
|
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.0');
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|