Version Description
- Fixed PHP warning in images manager
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 1.9.13 |
Comparing to | |
See all releases |
Code changes from version 1.9.12 to 1.9.13
- addons/button/buttons.css +0 -5
- cmb2/fields/gallery/cmb-field-gallery.php +6 -2
- includes/extensions/category/category.class.php +1 -1
- includes/extensions/stats/stats.init.php +1 -0
- includes/rbs_gallery_init.php +1 -1
- includes/rbs_gallery_list.php +5 -3
- languages/rbs_gallery-uk_UA.mo +0 -0
- languages/rbs_gallery-uk_UA.po +341 -79
- readme.txt +81 -75
- robogallery.php +2 -2
addons/button/buttons.css
CHANGED
@@ -69,11 +69,6 @@
|
|
69 |
|
70 |
.rbs_gallery_button {
|
71 |
}
|
72 |
-
|
73 |
-
.rbs_gallery_button a.button{
|
74 |
-
float: none;
|
75 |
-
}
|
76 |
-
|
77 |
.rbs_gallery_button .button {
|
78 |
display: inline-block;
|
79 |
height: 32px;
|
69 |
|
70 |
.rbs_gallery_button {
|
71 |
}
|
|
|
|
|
|
|
|
|
|
|
72 |
.rbs_gallery_button .button {
|
73 |
display: inline-block;
|
74 |
height: 32px;
|
cmb2/fields/gallery/cmb-field-gallery.php
CHANGED
@@ -17,9 +17,13 @@ function pw_gallery_field( $field, $meta ) {
|
|
17 |
|
18 |
|
19 |
|
20 |
-
if ( ! empty( $meta ) ) {
|
21 |
$meta = implode( ',', $meta );
|
22 |
-
} else $meta = ' '
|
|
|
|
|
|
|
|
|
23 |
|
24 |
echo '<div class="pw-gallery rbs_block ">';
|
25 |
echo ' <input type="hidden" class="pw-gallary-value" id="' . $field->args( 'id' ) . '" name="' . $field->args( 'id' ) . '" value="' . $meta . '" />';
|
17 |
|
18 |
|
19 |
|
20 |
+
/*if ( ! empty( $meta ) ) {
|
21 |
$meta = implode( ',', $meta );
|
22 |
+
} else $meta = ' ';*/
|
23 |
+
|
24 |
+
if ( empty( $meta ) || $meta == ' ' || $meta == '' || !is_array($meta) ) {
|
25 |
+
$meta = ' ';
|
26 |
+
} else $meta = implode( ',', $meta );
|
27 |
|
28 |
echo '<div class="pw-gallery rbs_block ">';
|
29 |
echo ' <input type="hidden" class="pw-gallary-value" id="' . $field->args( 'id' ) . '" name="' . $field->args( 'id' ) . '" value="' . $meta . '" />';
|
includes/extensions/category/category.class.php
CHANGED
@@ -132,7 +132,7 @@ class ROBO_GALLERY_CATEGORY
|
|
132 |
);
|
133 |
|
134 |
$postTypeObject = get_post_type_object($this->postType);
|
135 |
-
|
136 |
'hierarchy-post-attributes-js',
|
137 |
'hierarchyPostAttributes',
|
138 |
array(
|
132 |
);
|
133 |
|
134 |
$postTypeObject = get_post_type_object($this->postType);
|
135 |
+
wp_localize_script(
|
136 |
'hierarchy-post-attributes-js',
|
137 |
'hierarchyPostAttributes',
|
138 |
array(
|
includes/extensions/stats/stats.init.php
CHANGED
@@ -15,6 +15,7 @@
|
|
15 |
if(!function_exists('rbs_gallery_stats_init')){
|
16 |
function rbs_gallery_stats_init(){
|
17 |
rbs_gallery_include('stats.class.php', plugin_dir_path( __FILE__ ) );
|
|
|
18 |
new ROBO_GALLERY_STATS( ROBO_GALLERY_TYPE_POST );
|
19 |
}
|
20 |
add_action( 'init', 'rbs_gallery_stats_init' );
|
15 |
if(!function_exists('rbs_gallery_stats_init')){
|
16 |
function rbs_gallery_stats_init(){
|
17 |
rbs_gallery_include('stats.class.php', plugin_dir_path( __FILE__ ) );
|
18 |
+
//echo plugin_dir_path( __FILE__ );
|
19 |
new ROBO_GALLERY_STATS( ROBO_GALLERY_TYPE_POST );
|
20 |
}
|
21 |
add_action( 'init', 'rbs_gallery_stats_init' );
|
includes/rbs_gallery_init.php
CHANGED
@@ -85,7 +85,7 @@ function create_post_type_robo_gallery() {
|
|
85 |
'supports' => $supportArray,
|
86 |
'menu_icon' => 'dashicons-format-gallery',
|
87 |
));
|
88 |
-
|
89 |
delete_option( 'RoboGalleryInstall' );
|
90 |
global $wp_rewrite; $wp_rewrite->flush_rules();
|
91 |
}
|
85 |
'supports' => $supportArray,
|
86 |
'menu_icon' => 'dashicons-format-gallery',
|
87 |
));
|
88 |
+
if ( is_admin() && get_option( 'RoboGalleryInstall' ) == 'now' ) {
|
89 |
delete_option( 'RoboGalleryInstall' );
|
90 |
global $wp_rewrite; $wp_rewrite->flush_rules();
|
91 |
}
|
includes/rbs_gallery_list.php
CHANGED
@@ -47,9 +47,10 @@ if(!function_exists('rbs_custom_columns')){
|
|
47 |
|
48 |
case 'rbs_gallery_views' :
|
49 |
global $post;
|
50 |
-
$
|
51 |
-
$
|
52 |
-
|
|
|
53 |
break;
|
54 |
}
|
55 |
}
|
@@ -70,6 +71,7 @@ if(!function_exists('add_rbs_table_columns')){
|
|
70 |
}
|
71 |
|
72 |
|
|
|
73 |
if(!function_exists('rbs_gallery_robogalleryList')){
|
74 |
function rbs_gallery_robogalleryList (){
|
75 |
wp_enqueue_style ('robo-gallery-list', ROBO_GALLERY_URL.'css/admin/list.css', array( ), ROBO_GALLERY_VERSION );
|
47 |
|
48 |
case 'rbs_gallery_views' :
|
49 |
global $post;
|
50 |
+
$views = '';
|
51 |
+
$views = (int) get_post_meta( $post->ID, 'gallery_views_count', true);
|
52 |
+
//if(!$views) $views = '-';
|
53 |
+
echo $views;
|
54 |
break;
|
55 |
}
|
56 |
}
|
71 |
}
|
72 |
|
73 |
|
74 |
+
|
75 |
if(!function_exists('rbs_gallery_robogalleryList')){
|
76 |
function rbs_gallery_robogalleryList (){
|
77 |
wp_enqueue_style ('robo-gallery-list', ROBO_GALLERY_URL.'css/admin/list.css', array( ), ROBO_GALLERY_VERSION );
|
languages/rbs_gallery-uk_UA.mo
CHANGED
Binary file
|
languages/rbs_gallery-uk_UA.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Robo Gallery V 1.2\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: RoboSoft Team <team@robosoft.co>\n"
|
7 |
"Language-Team: RoboSoft Team <team@robosoft.co>\n"
|
8 |
"Language: uk_UA\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-Basepath: ../includes\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
15 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
@@ -17,16 +17,235 @@ msgstr ""
|
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
#: extensions/rbs_create_post.php:10
|
21 |
msgid "Post manager"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: extensions/rbs_create_post.php:11 rbs_gallery_button.php:
|
25 |
#: rbs_gallery_list.php:28
|
26 |
msgid "Close"
|
27 |
msgstr "Закрити"
|
28 |
|
29 |
-
#: extensions/rbs_create_post.php:12 options/rbs_gallery_options_tools.php:
|
30 |
msgid "Create post"
|
31 |
msgstr ""
|
32 |
|
@@ -34,89 +253,111 @@ msgstr ""
|
|
34 |
msgid "Loading . . . ."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: extensions/rbs_create_post_ajax.php:
|
38 |
-
#: extensions/rbs_create_post_ajax.php:
|
39 |
-
#: extensions/rbs_create_post_ajax.php:
|
40 |
-
#: extensions/rbs_create_post_ajax.php:
|
41 |
msgid "Post not created. Error: "
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: extensions/rbs_create_post_ajax.php:
|
45 |
-
#: extensions/rbs_create_post_ajax.php:
|
|
|
46 |
msgid "Empty gallery ID"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: extensions/rbs_create_post_ajax.php:
|
50 |
-
#: extensions/rbs_create_post_ajax.php:170
|
51 |
msgid "Incorrect gallery ID"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: extensions/rbs_create_post_ajax.php:
|
55 |
msgid "Add new post"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: extensions/rbs_create_post_ajax.php:
|
59 |
msgid "Category"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: extensions/rbs_create_post_ajax.php:
|
63 |
-
#: extensions/rbs_create_post_ajax.php:
|
64 |
#: options/rbs_gallery_options_hover.php:118
|
65 |
#: options/rbs_gallery_options_lightbox.php:48
|
66 |
#: options/rbs_gallery_options_polaroid.php:46 rbs_gallery_widget.php:71
|
67 |
msgid "Title"
|
68 |
msgstr "Назва"
|
69 |
|
70 |
-
#: extensions/rbs_create_post_ajax.php:
|
71 |
msgid "Slug"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: extensions/rbs_create_post_ajax.php:
|
75 |
#: options/rbs_gallery_options_lightbox.php:29
|
76 |
msgid "Text"
|
77 |
msgstr "Текст"
|
78 |
|
79 |
-
#: extensions/rbs_create_post_ajax.php:
|
80 |
msgid "Short tag of the gallery will be insert into created article."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: extensions/rbs_create_post_ajax.php:
|
84 |
msgid "Post "
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: extensions/rbs_create_post_ajax.php:
|
88 |
msgid " created"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: extensions/rbs_create_post_ajax.php:
|
92 |
-
#: extensions/rbs_create_post_ajax.php:
|
93 |
-
#: extensions/rbs_create_post_ajax.php:
|
94 |
-
msgid "Edit"
|
95 |
-
msgstr "Редагувати"
|
96 |
-
|
97 |
-
#: extensions/rbs_create_post_ajax.php:132
|
98 |
-
#: extensions/rbs_create_post_ajax.php:187
|
99 |
-
#: extensions/rbs_create_post_ajax.php:188
|
100 |
msgid "Preview"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: extensions/rbs_create_post_ajax.php:
|
104 |
msgid "Error: input value"
|
105 |
msgstr "Помилка: вхідне значення"
|
106 |
|
107 |
-
#: extensions/rbs_create_post_ajax.php:
|
108 |
-
#: extensions/rbs_create_post_ajax.php:
|
109 |
msgid "Error: "
|
110 |
msgstr "Помилка:"
|
111 |
|
112 |
-
#: extensions/rbs_create_post_ajax.php:
|
113 |
msgid "Status"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: extensions/rbs_create_post_ajax.php:
|
117 |
msgid "publish"
|
118 |
msgstr ""
|
119 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
#: options/rbs_gallery_options_button.php:18
|
121 |
msgid "Menu Options"
|
122 |
msgstr ""
|
@@ -416,8 +657,7 @@ msgstr ""
|
|
416 |
#: options/rbs_gallery_options_info.php:18
|
417 |
#: options/rbs_gallery_options_info.php:31
|
418 |
#: options/rbs_gallery_options_infowide.php:18 rbs_gallery_about.php:63
|
419 |
-
#: rbs_gallery_about.php:64 rbs_gallery_list.php:29
|
420 |
-
#: rbs_gallery_topblock.php:20
|
421 |
msgid "Get Pro version"
|
422 |
msgstr "Отримати Pro версію"
|
423 |
|
@@ -596,18 +836,34 @@ msgstr ""
|
|
596 |
msgid "After Text"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: options/rbs_gallery_options_tools.php:
|
600 |
msgid "Gallery Tools"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: options/rbs_gallery_options_tools.php:
|
604 |
msgid "Posts List"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: options/rbs_gallery_options_tools.php:
|
608 |
msgid "Here you can create and customize new post with gallery inside it"
|
609 |
msgstr ""
|
610 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
611 |
#: options/rbs_gallery_options_view.php:18
|
612 |
msgid "Thumbs View Options"
|
613 |
msgstr ""
|
@@ -724,31 +980,31 @@ msgstr ""
|
|
724 |
msgid "Advanced images description settings"
|
725 |
msgstr "Розширені налаштування"
|
726 |
|
727 |
-
#: rbs_gallery_about.php:69 rbs_gallery_settings.php:
|
728 |
msgid "All Rights Reserved"
|
729 |
msgstr "Всі права захищені"
|
730 |
|
731 |
-
#: rbs_gallery_button.php:
|
732 |
msgid "Robo Gallery"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: rbs_gallery_button.php:
|
736 |
msgid "Insert"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: rbs_gallery_button.php:
|
740 |
msgid "Add Robo Gallery"
|
741 |
msgstr "Додати Robo Галерею "
|
742 |
|
743 |
-
#: rbs_gallery_button.php:
|
744 |
msgid "Select gallery"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: rbs_gallery_button.php:
|
748 |
msgid "Configure it in"
|
749 |
msgstr "Налаштувати"
|
750 |
|
751 |
-
#: rbs_gallery_button.php:
|
752 |
msgid "Robo Gallery plugin"
|
753 |
msgstr ""
|
754 |
|
@@ -756,15 +1012,15 @@ msgstr ""
|
|
756 |
msgid "Available in"
|
757 |
msgstr "Доступно в"
|
758 |
|
759 |
-
#: rbs_gallery_init.php:
|
760 |
msgid "Galleries List"
|
761 |
msgstr "Галереї"
|
762 |
|
763 |
-
#: rbs_gallery_init.php:
|
764 |
msgid "Add Gallery"
|
765 |
msgstr "Додати Галерею "
|
766 |
|
767 |
-
#: rbs_gallery_init.php:
|
768 |
msgid "Edit Gallery"
|
769 |
msgstr "Редагувати Галерею"
|
770 |
|
@@ -777,17 +1033,13 @@ msgid ""
|
|
777 |
"You can create only 3 galleries. Update to PRO to get unlimited galleries"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: rbs_gallery_list.php:
|
781 |
-
msgid "
|
782 |
-
msgstr "
|
783 |
-
|
784 |
-
#: rbs_gallery_list.php:63
|
785 |
-
msgid "BackUp"
|
786 |
-
msgstr "Резервне копіювання"
|
787 |
|
788 |
#: rbs_gallery_list.php:66
|
789 |
-
msgid "
|
790 |
-
msgstr ""
|
791 |
|
792 |
#: rbs_gallery_media.php:58
|
793 |
msgid "Column"
|
@@ -813,55 +1065,62 @@ msgstr ""
|
|
813 |
msgid "Compatibility Settings"
|
814 |
msgstr "Настройки сумісності"
|
815 |
|
816 |
-
#: rbs_gallery_settings.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
817 |
msgid "jQuery Version"
|
818 |
msgstr "Версія jQuery "
|
819 |
|
820 |
-
#: rbs_gallery_settings.php:
|
821 |
msgid "Default"
|
822 |
msgstr "Типове"
|
823 |
|
824 |
-
#: rbs_gallery_settings.php:
|
825 |
msgid "Alternative"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: rbs_gallery_settings.php:
|
829 |
msgid "Forced include"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: rbs_gallery_settings.php:
|
833 |
msgid "Switch Style"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: rbs_gallery_settings.php:
|
837 |
msgid "Modern"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: rbs_gallery_settings.php:
|
841 |
msgid "Classic"
|
842 |
msgstr "Класичний"
|
843 |
|
844 |
-
#: rbs_gallery_settings.php:
|
845 |
msgid "Size Calculations Delay"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: rbs_gallery_settings.php:
|
849 |
msgid "Create Post Settings"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: rbs_gallery_settings.php:
|
853 |
msgid "Show Text"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: rbs_gallery_settings.php:
|
857 |
-
msgid "Show"
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: rbs_gallery_settings.php:76 rbs_gallery_settings.php:77
|
861 |
-
msgid "Hide"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: rbs_gallery_settings.php:85
|
865 |
msgid "Save Changes"
|
866 |
msgstr ""
|
867 |
|
@@ -893,6 +1152,9 @@ msgstr ""
|
|
893 |
msgid "Gallery:"
|
894 |
msgstr "Галерея:"
|
895 |
|
|
|
|
|
|
|
896 |
#~ msgid "Show Menu"
|
897 |
#~ msgstr "Показати меню"
|
898 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Robo Gallery V 1.2\n"
|
4 |
+
"POT-Creation-Date: 2016-02-03 20:00+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-02-03 20:01+0100\n"
|
6 |
"Last-Translator: RoboSoft Team <team@robosoft.co>\n"
|
7 |
"Language-Team: RoboSoft Team <team@robosoft.co>\n"
|
8 |
"Language: uk_UA\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.6\n"
|
13 |
"X-Poedit-Basepath: ../includes\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
15 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: extensions/backup/backup.class.php:271
|
21 |
+
msgid "Can't create directory for archive file."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: extensions/backup/backup.class.php:351
|
25 |
+
#, php-format
|
26 |
+
msgid "Can not clear archive's file: \"%s\"."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: extensions/backup/backup.class.php:367
|
30 |
+
#, php-format
|
31 |
+
msgid "Didn't save archive with files \"%s\"."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: extensions/backup/backup.class.php:633
|
35 |
+
msgid "Can't find import xml file in archive."
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: extensions/backup/backup.class.php:676
|
39 |
+
msgid "Can't set xml content for reading."
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: extensions/backup/backup.class.php:682
|
43 |
+
msgid "Invalid document of import"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: extensions/backup/backup.class.php:846
|
47 |
+
#, php-format
|
48 |
+
msgid "Error insert post attachment with ID: \"%d\" and guid: \"%s\". %s"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: extensions/backup/backup.class.php:902
|
52 |
+
msgid "Invalid xml content."
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: extensions/backup/backup.class.php:978
|
56 |
+
#, php-format
|
57 |
+
msgid "Error insert post with ID: \"%d\" and title: \"%s\". %s"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: extensions/backup/backup.class.php:1009
|
61 |
+
#, php-format
|
62 |
+
msgid ""
|
63 |
+
"Error insert postmeta for post with ID %d. Meta key: \"%s\", meta value: \"%s"
|
64 |
+
"\""
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: extensions/backup/backup.class.php:1061
|
68 |
+
#, php-format
|
69 |
+
msgid "Can't open archive \"%s\"."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: extensions/backup/backup.class.php:1083
|
73 |
+
#, php-format
|
74 |
+
msgid "Can't import file \"%s\". File is absent in archive"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: extensions/backup/backup.class.php:1115
|
78 |
+
#, php-format
|
79 |
+
msgid "Can't create directory \"%s\" during import file."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: extensions/backup/backup.class.php:1119
|
83 |
+
#, php-format
|
84 |
+
msgid "Can't create file \"%s\" during import file."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: extensions/backup/backup.form.php:34
|
88 |
+
msgid "Error: Can't check Maximum Upload File Size"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: extensions/backup/backup.form.php:58
|
92 |
+
msgid "Robo Gallery Backup"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: extensions/backup/backup.form.php:97
|
96 |
+
msgid "Error Import "
|
97 |
+
msgstr "Помилка імпорту"
|
98 |
+
|
99 |
+
#: extensions/backup/backup.form.php:101
|
100 |
+
msgid "Success Import "
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: extensions/backup/backup.form.php:103
|
104 |
+
msgid "Import Post"
|
105 |
+
msgstr "Імпорт"
|
106 |
+
|
107 |
+
#: extensions/backup/backup.form.php:104
|
108 |
+
msgid "Import Images"
|
109 |
+
msgstr "Імпорт зображень"
|
110 |
+
|
111 |
+
#: extensions/backup/backup.form.php:110
|
112 |
+
msgid "Duplicate Post"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: extensions/backup/backup.form.php:111
|
116 |
+
msgid "Duplicate Images"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: extensions/backup/backup.form.php:118
|
120 |
+
msgid "Skipped Post"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: extensions/backup/backup.form.php:119
|
124 |
+
msgid "Skipped Images"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: extensions/backup/backup.form.php:126
|
128 |
+
msgid "Error: please check backup file"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: extensions/backup/backup.form.php:129
|
132 |
+
msgid "Error: check secure"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: extensions/backup/backup.form.php:155
|
136 |
+
msgid ""
|
137 |
+
"You can use Full Backup options to make backup of configured galleries "
|
138 |
+
"settings and images. As result you'll get archive with XML file of galleries "
|
139 |
+
"settings and all images of your galleries"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: extensions/backup/backup.form.php:160 extensions/backup/backup.form.php:189
|
143 |
+
msgid "File Name"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: extensions/backup/backup.form.php:169
|
147 |
+
msgid "Download Full Backup"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: extensions/backup/backup.form.php:183
|
151 |
+
msgid ""
|
152 |
+
"After EXPORT copy images from server folder: {Wordpress folder}/wp-content/"
|
153 |
+
"uploads to the new location by FTP"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: extensions/backup/backup.form.php:197
|
157 |
+
msgid "Download Backup"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: extensions/backup/backup.form.php:213
|
161 |
+
msgid "Sever Environment"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: extensions/backup/backup.form.php:216
|
165 |
+
msgid "Max upload size"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: extensions/backup/backup.form.php:217
|
169 |
+
msgid "Max POST size"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: extensions/backup/backup.form.php:218
|
173 |
+
msgid "How to increase the max upload size?"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: extensions/backup/backup.form.php:223 extensions/backup/backup.form.php:226
|
177 |
+
msgid "Duplicate"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: extensions/backup/backup.form.php:229
|
181 |
+
msgid "Make copy if such gallery or image already exist in system"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: extensions/backup/backup.form.php:238
|
185 |
+
msgid "Select backup file"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: extensions/backup/backup.form.php:246
|
189 |
+
msgid "Upload XML"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: extensions/category/category.class.php:89
|
193 |
+
msgid "Categories"
|
194 |
+
msgstr "Категорії"
|
195 |
+
|
196 |
+
#: extensions/category/category.class.php:149
|
197 |
+
msgid "Save"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: extensions/category/category.class.php:152
|
201 |
+
msgid "Cancel"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: extensions/category/category.class.php:161
|
205 |
+
msgid "Error"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: extensions/category/category.class.php:164
|
209 |
+
msgid "OK"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: extensions/category/category.class.php:197
|
213 |
+
msgid "Root Category"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: extensions/category/category.class.php:209
|
217 |
+
#: extensions/rbs_create_post_ajax.php:130
|
218 |
+
#: extensions/rbs_create_post_ajax.php:188
|
219 |
+
#: extensions/rbs_create_post_ajax.php:189
|
220 |
+
msgid "Edit"
|
221 |
+
msgstr "Редагувати"
|
222 |
+
|
223 |
+
#: extensions/category/category.class.php:226
|
224 |
+
msgid "Post ID is absent in request"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: extensions/category/category.class.php:252
|
228 |
+
msgid "Post type is absent in request"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: extensions/category/category.class.php:286
|
232 |
+
msgid "Empty posts hierarchy data for saving"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: extensions/category/category.class.php:291
|
236 |
+
msgid "Wrong posts hierarchy data for saving"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
#: extensions/rbs_create_post.php:10
|
240 |
msgid "Post manager"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: extensions/rbs_create_post.php:11 rbs_gallery_button.php:26
|
244 |
#: rbs_gallery_list.php:28
|
245 |
msgid "Close"
|
246 |
msgstr "Закрити"
|
247 |
|
248 |
+
#: extensions/rbs_create_post.php:12 options/rbs_gallery_options_tools.php:32
|
249 |
msgid "Create post"
|
250 |
msgstr ""
|
251 |
|
253 |
msgid "Loading . . . ."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: extensions/rbs_create_post_ajax.php:31
|
257 |
+
#: extensions/rbs_create_post_ajax.php:38
|
258 |
+
#: extensions/rbs_create_post_ajax.php:85
|
259 |
+
#: extensions/rbs_create_post_ajax.php:120
|
260 |
msgid "Post not created. Error: "
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: extensions/rbs_create_post_ajax.php:31
|
264 |
+
#: extensions/rbs_create_post_ajax.php:151
|
265 |
+
#: extensions/rbs_create_post_ajax.php:209
|
266 |
msgid "Empty gallery ID"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: extensions/rbs_create_post_ajax.php:38
|
|
|
270 |
msgid "Incorrect gallery ID"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: extensions/rbs_create_post_ajax.php:41
|
274 |
msgid "Add new post"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: extensions/rbs_create_post_ajax.php:46
|
278 |
msgid "Category"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: extensions/rbs_create_post_ajax.php:51
|
282 |
+
#: extensions/rbs_create_post_ajax.php:165
|
283 |
#: options/rbs_gallery_options_hover.php:118
|
284 |
#: options/rbs_gallery_options_lightbox.php:48
|
285 |
#: options/rbs_gallery_options_polaroid.php:46 rbs_gallery_widget.php:71
|
286 |
msgid "Title"
|
287 |
msgstr "Назва"
|
288 |
|
289 |
+
#: extensions/rbs_create_post_ajax.php:56
|
290 |
msgid "Slug"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: extensions/rbs_create_post_ajax.php:61
|
294 |
#: options/rbs_gallery_options_lightbox.php:29
|
295 |
msgid "Text"
|
296 |
msgstr "Текст"
|
297 |
|
298 |
+
#: extensions/rbs_create_post_ajax.php:69
|
299 |
msgid "Short tag of the gallery will be insert into created article."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: extensions/rbs_create_post_ajax.php:127
|
303 |
msgid "Post "
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: extensions/rbs_create_post_ajax.php:127
|
307 |
msgid " created"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: extensions/rbs_create_post_ajax.php:133
|
311 |
+
#: extensions/rbs_create_post_ajax.php:193
|
312 |
+
#: extensions/rbs_create_post_ajax.php:194
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
msgid "Preview"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: extensions/rbs_create_post_ajax.php:139
|
317 |
msgid "Error: input value"
|
318 |
msgstr "Помилка: вхідне значення"
|
319 |
|
320 |
+
#: extensions/rbs_create_post_ajax.php:151
|
321 |
+
#: extensions/rbs_create_post_ajax.php:209
|
322 |
msgid "Error: "
|
323 |
msgstr "Помилка:"
|
324 |
|
325 |
+
#: extensions/rbs_create_post_ajax.php:166
|
326 |
msgid "Status"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: extensions/rbs_create_post_ajax.php:184
|
330 |
msgid "publish"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: extensions/stats/stats.form.php:18
|
334 |
+
msgid "Robo Gallery Statistics"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: extensions/stats/stats.form.php:27
|
338 |
+
msgid "Gallery Statistics"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: extensions/stats/stats.form.php:28
|
342 |
+
msgid "Images Statistics"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: extensions/stats/stats.form.php:69
|
346 |
+
msgid "Total Views"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: extensions/stats/stats.form.php:80
|
350 |
+
msgid "Published"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: extensions/stats/stats.form.php:88
|
354 |
+
msgid "Drafts"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: extensions/stats/stats.form.php:96
|
358 |
+
msgid "Trash"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
#: options/rbs_gallery_options_button.php:18
|
362 |
msgid "Menu Options"
|
363 |
msgstr ""
|
657 |
#: options/rbs_gallery_options_info.php:18
|
658 |
#: options/rbs_gallery_options_info.php:31
|
659 |
#: options/rbs_gallery_options_infowide.php:18 rbs_gallery_about.php:63
|
660 |
+
#: rbs_gallery_about.php:64 rbs_gallery_list.php:29 rbs_gallery_topblock.php:20
|
|
|
661 |
msgid "Get Pro version"
|
662 |
msgstr "Отримати Pro версію"
|
663 |
|
836 |
msgid "After Text"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: options/rbs_gallery_options_tools.php:17
|
840 |
msgid "Gallery Tools"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: options/rbs_gallery_options_tools.php:37
|
844 |
msgid "Posts List"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: options/rbs_gallery_options_tools.php:39
|
848 |
msgid "Here you can create and customize new post with gallery inside it"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: options/rbs_gallery_options_tools.php:42
|
852 |
+
msgid "Gallery Views"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: options/rbs_gallery_options_tools.php:44
|
856 |
+
msgid "Are you sure that you wish to reset statistics?"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: options/rbs_gallery_options_tools.php:44
|
860 |
+
msgid "Success: Statistic successfully reset!"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: options/rbs_gallery_options_tools.php:44
|
864 |
+
msgid "Reset"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
#: options/rbs_gallery_options_view.php:18
|
868 |
msgid "Thumbs View Options"
|
869 |
msgstr ""
|
980 |
msgid "Advanced images description settings"
|
981 |
msgstr "Розширені налаштування"
|
982 |
|
983 |
+
#: rbs_gallery_about.php:69 rbs_gallery_settings.php:105
|
984 |
msgid "All Rights Reserved"
|
985 |
msgstr "Всі права захищені"
|
986 |
|
987 |
+
#: rbs_gallery_button.php:25 rbs_gallery_media.php:43
|
988 |
msgid "Robo Gallery"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: rbs_gallery_button.php:27
|
992 |
msgid "Insert"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: rbs_gallery_button.php:33
|
996 |
msgid "Add Robo Gallery"
|
997 |
msgstr "Додати Robo Галерею "
|
998 |
|
999 |
+
#: rbs_gallery_button.php:44
|
1000 |
msgid "Select gallery"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: rbs_gallery_button.php:45 rbs_gallery_widget.php:79
|
1004 |
msgid "Configure it in"
|
1005 |
msgstr "Налаштувати"
|
1006 |
|
1007 |
+
#: rbs_gallery_button.php:45 rbs_gallery_widget.php:81
|
1008 |
msgid "Robo Gallery plugin"
|
1009 |
msgstr ""
|
1010 |
|
1012 |
msgid "Available in"
|
1013 |
msgstr "Доступно в"
|
1014 |
|
1015 |
+
#: rbs_gallery_init.php:75
|
1016 |
msgid "Galleries List"
|
1017 |
msgstr "Галереї"
|
1018 |
|
1019 |
+
#: rbs_gallery_init.php:76 rbs_gallery_init.php:77
|
1020 |
msgid "Add Gallery"
|
1021 |
msgstr "Додати Галерею "
|
1022 |
|
1023 |
+
#: rbs_gallery_init.php:78
|
1024 |
msgid "Edit Gallery"
|
1025 |
msgstr "Редагувати Галерею"
|
1026 |
|
1033 |
"You can create only 3 galleries. Update to PRO to get unlimited galleries"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: rbs_gallery_list.php:65
|
1037 |
+
msgid "Views"
|
1038 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
1039 |
|
1040 |
#: rbs_gallery_list.php:66
|
1041 |
+
msgid "Shortcode"
|
1042 |
+
msgstr "Shortcode"
|
1043 |
|
1044 |
#: rbs_gallery_media.php:58
|
1045 |
msgid "Column"
|
1065 |
msgid "Compatibility Settings"
|
1066 |
msgstr "Настройки сумісності"
|
1067 |
|
1068 |
+
#: rbs_gallery_settings.php:26
|
1069 |
+
msgid "Categories Manager"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: rbs_gallery_settings.php:29 rbs_gallery_settings.php:30
|
1073 |
+
#: rbs_gallery_settings.php:31 rbs_gallery_settings.php:87
|
1074 |
+
#: rbs_gallery_settings.php:88
|
1075 |
+
msgid "Show"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: rbs_gallery_settings.php:33 rbs_gallery_settings.php:34
|
1079 |
+
#: rbs_gallery_settings.php:90 rbs_gallery_settings.php:91
|
1080 |
+
msgid "Hide"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: rbs_gallery_settings.php:40 rbs_gallery_settings.php:43
|
1084 |
msgid "jQuery Version"
|
1085 |
msgstr "Версія jQuery "
|
1086 |
|
1087 |
+
#: rbs_gallery_settings.php:44 rbs_gallery_settings.php:45
|
1088 |
msgid "Default"
|
1089 |
msgstr "Типове"
|
1090 |
|
1091 |
+
#: rbs_gallery_settings.php:47 rbs_gallery_settings.php:48
|
1092 |
msgid "Alternative"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: rbs_gallery_settings.php:52 rbs_gallery_settings.php:53
|
1096 |
msgid "Forced include"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: rbs_gallery_settings.php:60 rbs_gallery_settings.php:63
|
1100 |
msgid "Switch Style"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: rbs_gallery_settings.php:64 rbs_gallery_settings.php:65
|
1104 |
msgid "Modern"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: rbs_gallery_settings.php:67 rbs_gallery_settings.php:68
|
1108 |
msgid "Classic"
|
1109 |
msgstr "Класичний"
|
1110 |
|
1111 |
+
#: rbs_gallery_settings.php:74
|
1112 |
msgid "Size Calculations Delay"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: rbs_gallery_settings.php:80
|
1116 |
msgid "Create Post Settings"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: rbs_gallery_settings.php:83 rbs_gallery_settings.php:86
|
1120 |
msgid "Show Text"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: rbs_gallery_settings.php:99
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1124 |
msgid "Save Changes"
|
1125 |
msgstr ""
|
1126 |
|
1152 |
msgid "Gallery:"
|
1153 |
msgstr "Галерея:"
|
1154 |
|
1155 |
+
#~ msgid "BackUp"
|
1156 |
+
#~ msgstr "Резервне копіювання"
|
1157 |
+
|
1158 |
#~ msgid "Show Menu"
|
1159 |
#~ msgstr "Показати меню"
|
1160 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.robosoft.co/robogallery
|
|
4 |
Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -178,10 +178,6 @@ You don't need do any additional configurations or manual code changes. You can
|
|
178 |
|
179 |
== Frequently Asked Questions ==
|
180 |
|
181 |
-
= How to set description text below image in the lightbox? =
|
182 |
-
|
183 |
-
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.
|
184 |
-
|
185 |
= How to change quality of the gallery thumbnails? =
|
186 |
|
187 |
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
@@ -190,18 +186,10 @@ Quality of the gallery thumbnails could be easily changed in gallery size option
|
|
190 |
|
191 |
Yes, you can insert gallery into post with shortcode tag
|
192 |
|
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 |
= How to upload images to the gallery? =
|
198 |
|
199 |
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.
|
200 |
|
201 |
-
= How to change color of the gallery thumbnails border? =
|
202 |
-
|
203 |
-
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
|
204 |
-
|
205 |
= How to turn off social buttons in gallery lightbox? =
|
206 |
|
207 |
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.
|
@@ -218,14 +206,6 @@ In gallery settings you can find hover type options. In settings of the gallery
|
|
218 |
|
219 |
In gallery settings you can enable custom caption settings where you can customize font size and see results in live preview
|
220 |
|
221 |
-
= How to generate shortcode for Wordpress page, post or widget? =
|
222 |
-
|
223 |
-
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
|
224 |
-
|
225 |
-
= Do you have Polaroid style in your gallery? =
|
226 |
-
|
227 |
-
In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
|
228 |
-
|
229 |
= How to install Gallery plugin? =
|
230 |
|
231 |
Just install it using regular Wordpress plugins installing mechanism. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
|
@@ -254,10 +234,6 @@ Every gallery image have additional fields where you can define custom link, tit
|
|
254 |
|
255 |
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
|
256 |
|
257 |
-
= How to crop uploaded gallery image? =
|
258 |
-
|
259 |
-
When you open gallery images manager you'll find there image edit mode where you can crop source image
|
260 |
-
|
261 |
= How many menu buttons styles do you have in gallery menu ? =
|
262 |
|
263 |
Gallery menu have multiply configuration options. Some of the options changing color of the buttons, some of them changing style of the buttons, which makes buttons for example 3d or with rounded corners
|
@@ -266,10 +242,6 @@ Gallery menu have multiply configuration options. Some of the options changing c
|
|
266 |
|
267 |
In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
|
268 |
|
269 |
-
= How to change icon on gallery thumbnail button? =
|
270 |
-
|
271 |
-
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
|
272 |
-
|
273 |
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
274 |
|
275 |
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
@@ -298,10 +270,6 @@ In our gallery we have 2 buttons for every gallery thumbnail. Zoom button and li
|
|
298 |
|
299 |
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.
|
300 |
|
301 |
-
= Is it possible to change background color of the gallery lightbox? =
|
302 |
-
|
303 |
-
Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block, where you can change color of the gallery lightbox background.
|
304 |
-
|
305 |
= Which permissions do I need to have on server for proper gallery installation? =
|
306 |
|
307 |
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.
|
@@ -322,10 +290,6 @@ Color of every gallery front end interface element could be changed changed in a
|
|
322 |
|
323 |
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
|
324 |
|
325 |
-
= How to use multi-category functionality of the gallery? =
|
326 |
-
|
327 |
-
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
|
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
|
@@ -346,10 +310,6 @@ If you have some conflict in gallery back end you can sort it with new compatibi
|
|
346 |
|
347 |
In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
|
348 |
|
349 |
-
= How to define custom link for some gallery images? =
|
350 |
-
|
351 |
-
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
|
352 |
-
|
353 |
= Is it possible to change color of the hovered image in gallery? =
|
354 |
|
355 |
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.
|
@@ -358,26 +318,10 @@ Yes, you can easily change color of the hovered image in gallery in backend. In
|
|
358 |
|
359 |
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
|
360 |
|
361 |
-
= What can I do if some gallery interface elements in backend do not work properly? =
|
362 |
-
|
363 |
-
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.
|
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
|
368 |
-
|
369 |
-
= Do you have some limits for images amount in gallery? =
|
370 |
-
|
371 |
-
No, we don't have any limits for amount of the images in gallery
|
372 |
-
|
373 |
= Do you have fade effect for the thumbnails hover? =
|
374 |
|
375 |
Yes, gallery have fade hover effect
|
376 |
|
377 |
-
= How to change ordering of the gallery images? =
|
378 |
-
|
379 |
-
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
380 |
-
|
381 |
= How to make gallery thumbnails with rounded corners? =
|
382 |
|
383 |
In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
|
@@ -394,6 +338,10 @@ Our gallery is fully responsive and gallery thumbnails size depend of a lot of f
|
|
394 |
|
395 |
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.
|
396 |
|
|
|
|
|
|
|
|
|
397 |
= How to define custom hover effect for some gallery thumbnail? =
|
398 |
|
399 |
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.
|
@@ -402,18 +350,14 @@ When you open gallery media manager you'll see there list of the gallery images.
|
|
402 |
|
403 |
Yes, it's possible to change transparency in gallery settings
|
404 |
|
405 |
-
= Is it possible to create target blank links? =
|
406 |
-
|
407 |
-
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.
|
408 |
-
|
409 |
-
= Do you have some limits for images types in gallery? =
|
410 |
-
|
411 |
-
You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
412 |
-
|
413 |
= How to customize border of the gallery thumbnails? =
|
414 |
|
415 |
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
|
416 |
|
|
|
|
|
|
|
|
|
417 |
= 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? =
|
418 |
|
419 |
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.
|
@@ -422,21 +366,17 @@ In our gallery you can define different amount of the columns for the images thu
|
|
422 |
|
423 |
For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
|
424 |
|
425 |
-
= How
|
426 |
-
|
427 |
-
Gallery have 15 hover animation effects, which could be combined with additional custom options
|
428 |
-
|
429 |
-
= How to rotate uploaded gallery image? =
|
430 |
|
431 |
-
|
432 |
|
433 |
-
=
|
434 |
|
435 |
-
|
436 |
|
437 |
-
=
|
438 |
|
439 |
-
|
440 |
|
441 |
= Do you have some limit for images size in gallery? =
|
442 |
|
@@ -450,6 +390,10 @@ In gallery settings, when enabled custom hover settings you can customize style
|
|
450 |
|
451 |
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.
|
452 |
|
|
|
|
|
|
|
|
|
453 |
= Where specify description of the gallery images? =
|
454 |
|
455 |
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
|
@@ -462,6 +406,22 @@ When you enable border in gallery settings you will see multiply options for cus
|
|
462 |
|
463 |
In gallery settings we create separate section where you can find create new post button. After click on this button you'll see wizard form where you can select all additional parameters for the gallery new post.
|
464 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
= Is it possible to have different settings for hover and static interface elements? =
|
466 |
|
467 |
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
@@ -470,6 +430,10 @@ Yes, you can have different styles of the borders and shadows for static and hov
|
|
470 |
|
471 |
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
|
472 |
|
|
|
|
|
|
|
|
|
473 |
= Is it possible to insert video as gallery link? =
|
474 |
|
475 |
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.
|
@@ -478,14 +442,38 @@ Yes. When you open gallery media manager you'll see there list of the gallery im
|
|
478 |
|
479 |
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
|
480 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
= Where to change settings of the image of the gallery? =
|
482 |
|
483 |
Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
|
484 |
|
|
|
|
|
|
|
|
|
485 |
= How to add text before and after gallery? =
|
486 |
|
487 |
In gallery settings you can find before/after text gallery field. This fields support HTML tags.
|
488 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
= Is it possible to create direct link on the front end to the gallery? =
|
490 |
|
491 |
Yes, you can use generated direct link inside particular gallery settings
|
@@ -494,6 +482,10 @@ Yes, you can use generated direct link inside particular gallery settings
|
|
494 |
|
495 |
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
|
496 |
|
|
|
|
|
|
|
|
|
497 |
= How to flip uploaded gallery image? =
|
498 |
|
499 |
When you open gallery images manager you'll find there image edit mode where you can flip source image
|
@@ -506,10 +498,18 @@ Shadows of the thumbnails you can customize in gallery settings. With gallery se
|
|
506 |
|
507 |
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
|
508 |
|
|
|
|
|
|
|
|
|
509 |
= How to enable icons on gallery hover shutter? =
|
510 |
|
511 |
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
|
512 |
|
|
|
|
|
|
|
|
|
513 |
== Screenshots ==
|
514 |
|
515 |
1. Gallery Demo 1
|
@@ -584,6 +584,9 @@ If any problem occurs, please contact us.
|
|
584 |
|
585 |
== Changelog ==
|
586 |
|
|
|
|
|
|
|
587 |
= 1.9.12 =
|
588 |
* Update Russian language main file
|
589 |
|
@@ -1010,6 +1013,9 @@ If any problem occurs, please contact us.
|
|
1010 |
|
1011 |
== Upgrade Notice ==
|
1012 |
|
|
|
|
|
|
|
1013 |
= 1.9.12 =
|
1014 |
Update Russian language main file
|
1015 |
|
4 |
Tags: gallery, add gallery, photo gallery, images gallery, media gallery, responsive gallery, gallery image, gallery lightbox, Polaroid gallery, Gallery Plugin, plugin gallery, video gallery, gallery shortcode, responsive images gallery, website gallery, widget gallery, wordpress gallery, wordpress gallery plugin, wordpress photo gallery plugin, wp gallery, wp gallery plugin, wp gallery plugins, multi categories gallery, add galleries, add picture, add pictures, album, best gallery, best gallery plugin, responsive galleries, mobile gallery, mobile galleries, responsive photo gallery, best portfolio, easy media gallery, filterable gallery, filterable portfolio, foto, fotoalbum, fotogalerie, sortable gallery, sortable galleries, free photo gallery, fullscreen gallery, galary, galeri, galerie, galerij, galery, gallary, Galleria, gallerie, galleries, gallery decription, gallery slider, gelary, gellary, gellery, google, grid gallery, image, image album, image gallery, image gallery plugin, image lightbox, image slider, image slideshow, images, jquery, jquery gallery, links, media, multiple pictures, page, pagination gallery, pagination portfolio, photo, photo album, photo albums, photoalbum, photogallery, photos, photoset, picture, pictures, plugin, plugin for gallery, portfolio, portfolio gallery, portfolio plugin, Post, posts, responsive slideshow, responsive wordpress photo gallery, seo image, slide show, slideshow, thumbnail, upload images, upload photos, batch upload, multiply images upload, view images, view pictures, wordpress portfolio plugin, multi-categories gallery, multi categories galleries, robo gallery
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.9.13
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
178 |
|
179 |
== Frequently Asked Questions ==
|
180 |
|
|
|
|
|
|
|
|
|
181 |
= How to change quality of the gallery thumbnails? =
|
182 |
|
183 |
Quality of the gallery thumbnails could be easily changed in gallery size option / thumbnails options / source
|
186 |
|
187 |
Yes, you can insert gallery into post with shortcode tag
|
188 |
|
|
|
|
|
|
|
|
|
189 |
= How to upload images to the gallery? =
|
190 |
|
191 |
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.
|
192 |
|
|
|
|
|
|
|
|
|
193 |
= How to turn off social buttons in gallery lightbox? =
|
194 |
|
195 |
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.
|
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 install Gallery plugin? =
|
210 |
|
211 |
Just install it using regular Wordpress plugins installing mechanism. If you have some questions related with our plugin feel free to contact our support team we happy to help you!
|
234 |
|
235 |
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
|
236 |
|
|
|
|
|
|
|
|
|
237 |
= How many menu buttons styles do you have in gallery menu ? =
|
238 |
|
239 |
Gallery menu have multiply configuration options. Some of the options changing color of the buttons, some of them changing style of the buttons, which makes buttons for example 3d or with rounded corners
|
242 |
|
243 |
In gallery settings you can enable custom caption settings where you can customize font color and see results in live preview
|
244 |
|
|
|
|
|
|
|
|
|
245 |
= Which parameters I can change for the gallery thumbnails borders and shadows? =
|
246 |
|
247 |
You can change size, color and style of gallery thumbnails borders and shadows. Also you can define different parameters for static and hovered status
|
270 |
|
271 |
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.
|
272 |
|
|
|
|
|
|
|
|
|
273 |
= Which permissions do I need to have on server for proper gallery installation? =
|
274 |
|
275 |
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.
|
290 |
|
291 |
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
|
292 |
|
|
|
|
|
|
|
|
|
293 |
= How to customize border of the gallery thumbnails? =
|
294 |
|
295 |
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
|
310 |
|
311 |
In gallery settings you can enable custom caption settings where you can customize font style and see results in live preview
|
312 |
|
|
|
|
|
|
|
|
|
313 |
= Is it possible to change color of the hovered image in gallery? =
|
314 |
|
315 |
Yes, you can easily change color of the hovered image in gallery in backend. In gallery settings we build-in comfortable color selector which make you able to change color of the gallery interface elements.
|
318 |
|
319 |
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
|
320 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
= Do you have fade effect for the thumbnails hover? =
|
322 |
|
323 |
Yes, gallery have fade hover effect
|
324 |
|
|
|
|
|
|
|
|
|
325 |
= How to make gallery thumbnails with rounded corners? =
|
326 |
|
327 |
In gallery settings you can find section rounds where with special options you can define radius for the gallery thumbnails
|
338 |
|
339 |
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.
|
340 |
|
341 |
+
= How to change ordering of the gallery images? =
|
342 |
+
|
343 |
+
When you open gallery for edit you can find there images manager where you can change ordering of the gallery images
|
344 |
+
|
345 |
= How to define custom hover effect for some gallery thumbnail? =
|
346 |
|
347 |
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.
|
350 |
|
351 |
Yes, it's possible to change transparency in gallery settings
|
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 to change transparency of the gallery thumbnails border? =
|
358 |
+
|
359 |
+
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
|
360 |
+
|
361 |
= 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? =
|
362 |
|
363 |
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.
|
366 |
|
367 |
For now we have build in @@TITLE@@, @@CAPTION@@, @@DESCR@@
|
368 |
|
369 |
+
= How to change font color of the gallery image description text? =
|
|
|
|
|
|
|
|
|
370 |
|
371 |
+
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
|
372 |
|
373 |
+
= What can I do if some gallery interface elements in backend do not work properly? =
|
374 |
|
375 |
+
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.
|
376 |
|
377 |
+
= What can I do if some gallery interface elements in backend do not work properly? =
|
378 |
|
379 |
+
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.
|
380 |
|
381 |
= Do you have some limit for images size in gallery? =
|
382 |
|
390 |
|
391 |
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.
|
392 |
|
393 |
+
= How to use multi-category functionality of the gallery? =
|
394 |
+
|
395 |
+
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
|
396 |
+
|
397 |
= Where specify description of the gallery images? =
|
398 |
|
399 |
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
|
406 |
|
407 |
In gallery settings we create separate section where you can find create new post button. After click on this button you'll see wizard form where you can select all additional parameters for the gallery new post.
|
408 |
|
409 |
+
= How to define custom link for some gallery images? =
|
410 |
+
|
411 |
+
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
|
412 |
+
|
413 |
+
= How to rotate uploaded gallery image? =
|
414 |
+
|
415 |
+
When you open gallery images manager you'll find there image edit mode where you can rotate source image
|
416 |
+
|
417 |
+
= How to change icon on gallery thumbnail button? =
|
418 |
+
|
419 |
+
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
|
420 |
+
|
421 |
+
= Do you have some limits for images amount in gallery? =
|
422 |
+
|
423 |
+
No, we don't have any limits for amount of the images in gallery
|
424 |
+
|
425 |
= Is it possible to have different settings for hover and static interface elements? =
|
426 |
|
427 |
Yes, you can have different styles of the borders and shadows for static and hovered gallery thumbnails.
|
430 |
|
431 |
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
|
432 |
|
433 |
+
= Is it possible to create target blank links? =
|
434 |
+
|
435 |
+
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.
|
436 |
+
|
437 |
= Is it possible to insert video as gallery link? =
|
438 |
|
439 |
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.
|
442 |
|
443 |
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
|
444 |
|
445 |
+
= How to set description text below image in the lightbox? =
|
446 |
+
|
447 |
+
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.
|
448 |
+
|
449 |
+
= How to change color of the gallery thumbnails border? =
|
450 |
+
|
451 |
+
When you enable border in gallery settings you will see multiply options for customization of the border. One from this options it's border color. You can select color using color selector
|
452 |
+
|
453 |
= Where to change settings of the image of the gallery? =
|
454 |
|
455 |
Settings of the gallery image you can change in images manager. There you can upload, edit or customize already uploaded images to the gallery
|
456 |
|
457 |
+
= How to crop uploaded gallery image? =
|
458 |
+
|
459 |
+
When you open gallery images manager you'll find there image edit mode where you can crop source image
|
460 |
+
|
461 |
= How to add text before and after gallery? =
|
462 |
|
463 |
In gallery settings you can find before/after text gallery field. This fields support HTML tags.
|
464 |
|
465 |
+
= How to generate shortcode for Wordpress page, post or widget? =
|
466 |
+
|
467 |
+
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
|
468 |
+
|
469 |
+
= How many thumbnails hover effects gallery has? =
|
470 |
+
|
471 |
+
Gallery have 15 hover animation effects, which could be combined with additional custom options
|
472 |
+
|
473 |
+
= Is it possible to change background color of the gallery lightbox? =
|
474 |
+
|
475 |
+
Yes, you can change background color of the gallery lightbox. When you open gallery settings you can find there gallery lightbox settings block, where you can change color of the gallery lightbox background.
|
476 |
+
|
477 |
= Is it possible to create direct link on the front end to the gallery? =
|
478 |
|
479 |
Yes, you can use generated direct link inside particular gallery settings
|
482 |
|
483 |
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
|
484 |
|
485 |
+
= Do you have Polaroid style in your gallery? =
|
486 |
+
|
487 |
+
In our gallery implemented options which make you able to make gallery thumbnails looks in Polaroid style, with caption of the image below thumbnail
|
488 |
+
|
489 |
= How to flip uploaded gallery image? =
|
490 |
|
491 |
When you open gallery images manager you'll find there image edit mode where you can flip source image
|
498 |
|
499 |
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
|
500 |
|
501 |
+
= Do you have some limits for images types in gallery? =
|
502 |
+
|
503 |
+
You can use any standard file type in our gallery: png, jpg, jpeg, gif
|
504 |
+
|
505 |
= How to enable icons on gallery hover shutter? =
|
506 |
|
507 |
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
|
508 |
|
509 |
+
= Where to change font color of the gallery lightbox text? =
|
510 |
+
|
511 |
+
When you open gallery settings you can find there gallery lightbox settings block, where you can gallery lightbox text color using color selector.
|
512 |
+
|
513 |
== Screenshots ==
|
514 |
|
515 |
1. Gallery Demo 1
|
584 |
|
585 |
== Changelog ==
|
586 |
|
587 |
+
= 1.9.13 =
|
588 |
+
* Fixed PHP warning in images manager
|
589 |
+
|
590 |
= 1.9.12 =
|
591 |
* Update Russian language main file
|
592 |
|
1013 |
|
1014 |
== Upgrade Notice ==
|
1015 |
|
1016 |
+
= 1.9.13 =
|
1017 |
+
Fixed PHP warning in images manager
|
1018 |
+
|
1019 |
= 1.9.12 =
|
1020 |
Update Russian language main file
|
1021 |
|
robogallery.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* Plugin Name: Robo Gallery
|
9 |
* Plugin URI: http://robosoft.co/robogallery
|
10 |
* Description: A responsive, easy and elegant way to show gallery.
|
11 |
-
* Version: 1.9.
|
12 |
* Author: RoboSoft (c)
|
13 |
* Author URI: http://robosoft.co/robogallery
|
14 |
* License: GPL-2.0+
|
@@ -19,7 +19,7 @@
|
|
19 |
|
20 |
if ( ! defined( 'WPINC' ) ) die;
|
21 |
define("ROBO_GALLERY", 1);
|
22 |
-
define("ROBO_GALLERY_VERSION", '1.9.
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|
8 |
* Plugin Name: Robo Gallery
|
9 |
* Plugin URI: http://robosoft.co/robogallery
|
10 |
* Description: A responsive, easy and elegant way to show gallery.
|
11 |
+
* Version: 1.9.13
|
12 |
* Author: RoboSoft (c)
|
13 |
* Author URI: http://robosoft.co/robogallery
|
14 |
* License: GPL-2.0+
|
19 |
|
20 |
if ( ! defined( 'WPINC' ) ) die;
|
21 |
define("ROBO_GALLERY", 1);
|
22 |
+
define("ROBO_GALLERY_VERSION", '1.9.13');
|
23 |
define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
24 |
define("ROBO_GALLERY_SPECIAL", 0);
|
25 |
|