Version Description
- Fix of the admin interface
- Updated category management dialog
Download this release
Release Info
Developer | robosoft |
Plugin | Gallery – Photo Gallery and Images Gallery |
Version | 2.6.12 |
Comparing to | |
See all releases |
Code changes from version 2.6.11 to 2.6.12
- includes/extensions/category/category.class.php +15 -25
- includes/rbs_gallery_init.php +1 -1
- languages/robo-gallery.pot +1 -1
- readme.txt +97 -22
- robogallery.php +3 -3
includes/extensions/category/category.class.php
CHANGED
@@ -30,26 +30,16 @@ class ROBO_GALLERY_CATEGORY{
|
|
30 |
$this->postTypeParams = array();
|
31 |
//$this->postTypeParams = $postTypeParams;
|
32 |
$this->assetsUri = plugin_dir_url(__FILE__);
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
protected function registerPostType(){
|
44 |
-
$params = array_merge(
|
45 |
-
$this->postTypeParams,
|
46 |
-
array('hierarchical' => true)
|
47 |
-
);
|
48 |
-
|
49 |
-
return register_post_type($this->postType, $params);
|
50 |
}
|
51 |
|
52 |
-
|
53 |
public function addMetaBox(){
|
54 |
add_meta_box(
|
55 |
'hierarchy-post-attributes-metabox',
|
@@ -173,7 +163,7 @@ class ROBO_GALLERY_CATEGORY{
|
|
173 |
|
174 |
if (!isset($_POST['post_id'])) {
|
175 |
header('HTTP/1.0 403 Forbidden');
|
176 |
-
echo
|
177 |
die();
|
178 |
}
|
179 |
|
@@ -181,7 +171,7 @@ class ROBO_GALLERY_CATEGORY{
|
|
181 |
$post = get_post($postId);
|
182 |
if (!$post) {
|
183 |
header('HTTP/1.0 403 Forbidden');
|
184 |
-
echo
|
185 |
die();
|
186 |
}
|
187 |
|
@@ -194,14 +184,14 @@ class ROBO_GALLERY_CATEGORY{
|
|
194 |
|
195 |
if (!isset($_POST['post_type'])) {
|
196 |
header('HTTP/1.0 403 Forbidden');
|
197 |
-
echo
|
198 |
die();
|
199 |
}
|
200 |
|
201 |
$postType = $_POST['post_type'];
|
202 |
if (!post_type_exists($postType)) {
|
203 |
header('HTTP/1.0 403 Forbidden');
|
204 |
-
echo
|
205 |
die();
|
206 |
}
|
207 |
|
@@ -223,12 +213,12 @@ class ROBO_GALLERY_CATEGORY{
|
|
223 |
|
224 |
if (!isset($_POST['hierarchy_posts'])) {
|
225 |
header('HTTP/1.0 403 Forbidden');
|
226 |
-
echo
|
227 |
die();
|
228 |
}
|
229 |
if (!is_array($_POST['hierarchy_posts'])) {
|
230 |
header('HTTP/1.0 403 Forbidden');
|
231 |
-
echo
|
232 |
die();
|
233 |
}
|
234 |
|
@@ -306,7 +296,7 @@ class ROBO_GALLERY_CATEGORY{
|
|
306 |
$postTypeObject = get_post_type_object($this->postType);
|
307 |
if (!current_user_can($postTypeObject->cap->edit_posts)) {
|
308 |
header('HTTP/1.0 403 Forbidden');
|
309 |
-
echo
|
310 |
die();
|
311 |
}
|
312 |
}
|
30 |
$this->postTypeParams = array();
|
31 |
//$this->postTypeParams = $postTypeParams;
|
32 |
$this->assetsUri = plugin_dir_url(__FILE__);
|
33 |
+
if( rbs_gallery_is_edit_page('edit') ){
|
34 |
+
add_action('add_meta_boxes', array($this, 'addMetaBox'));
|
35 |
+
}
|
36 |
+
add_action('admin_enqueue_scripts', array($this, 'enqueueScripts'));
|
37 |
+
add_action("wp_ajax_hierarchy_{$this->postType}_meta_box", array($this, 'ajaxMetaBoxAttributes'));
|
38 |
+
add_action("wp_ajax_hierarchy_{$this->postType}_dialog", array($this, 'ajaxDialog'));
|
39 |
+
add_action("wp_ajax_hierarchy_{$this->postType}_dialog_save", array($this, 'ajaxDialogSave'));
|
40 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
}
|
42 |
|
|
|
43 |
public function addMetaBox(){
|
44 |
add_meta_box(
|
45 |
'hierarchy-post-attributes-metabox',
|
163 |
|
164 |
if (!isset($_POST['post_id'])) {
|
165 |
header('HTTP/1.0 403 Forbidden');
|
166 |
+
echo 'Post ID is absent in request';
|
167 |
die();
|
168 |
}
|
169 |
|
171 |
$post = get_post($postId);
|
172 |
if (!$post) {
|
173 |
header('HTTP/1.0 403 Forbidden');
|
174 |
+
echo sprintf('Can not find post with ID "%d"', $postId);
|
175 |
die();
|
176 |
}
|
177 |
|
184 |
|
185 |
if (!isset($_POST['post_type'])) {
|
186 |
header('HTTP/1.0 403 Forbidden');
|
187 |
+
echo 'Post type is absent in request';
|
188 |
die();
|
189 |
}
|
190 |
|
191 |
$postType = $_POST['post_type'];
|
192 |
if (!post_type_exists($postType)) {
|
193 |
header('HTTP/1.0 403 Forbidden');
|
194 |
+
echo sprintf('Post type "%s" is not registered', htmlentities($postType));
|
195 |
die();
|
196 |
}
|
197 |
|
213 |
|
214 |
if (!isset($_POST['hierarchy_posts'])) {
|
215 |
header('HTTP/1.0 403 Forbidden');
|
216 |
+
echo 'Empty posts hierarchy data for saving';
|
217 |
die();
|
218 |
}
|
219 |
if (!is_array($_POST['hierarchy_posts'])) {
|
220 |
header('HTTP/1.0 403 Forbidden');
|
221 |
+
echo 'Wrong posts hierarchy data for saving';
|
222 |
die();
|
223 |
}
|
224 |
|
296 |
$postTypeObject = get_post_type_object($this->postType);
|
297 |
if (!current_user_can($postTypeObject->cap->edit_posts)) {
|
298 |
header('HTTP/1.0 403 Forbidden');
|
299 |
+
echo sprintf("You don't have permission for editing this %s", $postTypeObject->labels->name);
|
300 |
die();
|
301 |
}
|
302 |
}
|
includes/rbs_gallery_init.php
CHANGED
@@ -76,7 +76,7 @@ function create_post_type_robo_gallery() {
|
|
76 |
array(
|
77 |
'labels' => array(
|
78 |
'name' => 'Robo Gallery',
|
79 |
-
'singular_name' =>
|
80 |
'all_items' => __( 'Galleries List', 'robo-gallery' ),
|
81 |
'add_new' => __( 'Add Gallery', 'robo-gallery' ),
|
82 |
'add_new_item' => __( 'Add Gallery', 'robo-gallery' ),
|
76 |
array(
|
77 |
'labels' => array(
|
78 |
'name' => 'Robo Gallery',
|
79 |
+
'singular_name' => __( 'Robo Gallery', 'robo-gallery' ),
|
80 |
'all_items' => __( 'Galleries List', 'robo-gallery' ),
|
81 |
'add_new' => __( 'Add Gallery', 'robo-gallery' ),
|
82 |
'add_new_item' => __( 'Add Gallery', 'robo-gallery' ),
|
languages/robo-gallery.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Robo Gallery\n"
|
6 |
-
"POT-Creation-Date: 2017-05-15
|
7 |
"PO-Revision-Date: 2017-05-15 11:19+0200\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Robo Gallery\n"
|
6 |
+
"POT-Creation-Date: 2017-05-15 13:18+0200\n"
|
7 |
"PO-Revision-Date: 2017-05-15 11:19+0200\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
=== Gallery - Photo Gallery and Images Gallery ===
|
2 |
Contributors: gallerysupport, robosoft
|
3 |
-
Donate link:
|
4 |
Tags: gallery, photo gallery, images gallery, gallery images, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, portfolio gallery, video gallery, Gallery Plugin, Robo Gallery
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 2.6.
|
8 |
License: GPLv2 or later
|
9 |
-
License URI:
|
10 |
|
11 |
Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
|
12 |
|
@@ -14,9 +14,9 @@ Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, ga
|
|
14 |
|
15 |
= Gallery - Robo Gallery =
|
16 |
|
17 |
-
#### [Gallery Most Easy and Powerful plugin to create attractive image section on your WordPress website.](
|
18 |
|
19 |
-
#### Gallery on your website it's really attractive and very important part of your pages. If you looking for fast, easy gallery with simple and very beautiful, highly customizable design [here is it...](
|
20 |
|
21 |
> #### New function
|
22 |
>
|
@@ -29,17 +29,17 @@ Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, ga
|
|
29 |
|
30 |
> #### Gallery Demos
|
31 |
>
|
32 |
-
>[Multi Categories Cars Gallery Demo](
|
33 |
>
|
34 |
-
>[Grid Layout Gallery Demo with Fade hover effect](
|
35 |
>
|
36 |
-
>[Multi Categories Polaroid style Movie Gallery Demo with classic layout](
|
37 |
>
|
38 |
-
>[Design Sketch Gallery Demo with grid layout](
|
39 |
>
|
40 |
-
>[Multi Categories Gallery Demo with custom interface colors and classic layout](
|
41 |
>
|
42 |
-
>[Video Gallery Demo with grid layout](
|
43 |
|
44 |
|
45 |
= Gallery Key Features =
|
@@ -152,7 +152,7 @@ Robo Gallery is one of the most powerfull wordpress gallery. With Robo Gallery y
|
|
152 |
* **Gallery Custom Layout** - Advanced options for customization layout of the gallery. Ability to define custom size and columns amount of the gallery for different screen resolution. Ability to enable auto size option different way for every gallery screen size resolution. Every gallery image have columns option where you can customize size of the image. Every image could take different amount of columns.
|
153 |
* **Gallery Lightbox customization** - Gallery lightbox support set of advanced functionality. You can easily enable social buttons in gallery lightbox or change galley images description font color. With color selector you can change color and transparency of the gallery lightbox background.
|
154 |
* **Clone Gallery** - Gallery will copy all settings from selected source gallery. Very useful option for the webmasters who planning to create a lot of galleries. You don't have to configure gallery every time. Just setup styles of the gallery in one place and use the same options for another galleries on your website in another galleries. Very fast, comfortable, advanced tool to speed up your workflow!
|
155 |
-
* **Gallery Compatibility** - Gallery implemented in native Wordpress style. All code implemented based on Wordpress api and base classes. Also we tried in our gallery code avoid conflicts with other plugins and libraries. If you accordantly meet with some errors, conflicts or other related problems feel free to [contact us](
|
156 |
* **Secure Gallery** - Gallery hard tested and followed all security requirements to avoid any security problems in our gallery.
|
157 |
* **Gallery Posts** - in gallery implemented advanced posts manager. For every gallery possible to create multiply posts. Gallery posts manager have options for customization titles, slug, category and customizable text.
|
158 |
* **Advanced gallery columns** - in gallery implemented advanced customizable thumbnails columns management. In gallery settings you can define different amount of thumbnails columns for different screen size/resolution.
|
@@ -164,21 +164,21 @@ Robo Gallery is one of the most powerfull wordpress gallery. With Robo Gallery y
|
|
164 |
|
165 |
> #### Useful Gallery Links
|
166 |
>
|
167 |
-
>[Multi Categories Cars Gallery Demo](
|
168 |
>
|
169 |
-
>[Grid Layout Gallery Demo with Fade hover effect](
|
170 |
>
|
171 |
-
>[Multi Categories Polaroid style Movie Gallery Demo with classic layout](
|
172 |
>
|
173 |
-
>[Design Sketch Gallery Demo with grid layout](
|
174 |
>
|
175 |
-
>[Multi Categories Gallery Demo with custom interface colors and classic layout](
|
176 |
>
|
177 |
-
>[Video Gallery Demo with grid layout](
|
178 |
>
|
179 |
-
>[Technical Support for Robo Gallery](
|
180 |
>
|
181 |
-
>[Find More Details about Robo Gallery](
|
182 |
|
183 |
|
184 |
== Installation ==
|
@@ -248,12 +248,16 @@ In gallery general settings you can find gallery thumbnails columns options whic
|
|
248 |
|
249 |
= Gallery Compatibility =
|
250 |
|
251 |
-
Gallery implemented in native Wordpress style. All code implemented based on Wordpress api and base classes. Also we tried in our gallery code avoid conflicts with other plugins and libraries. If you accordantly meet with some errors, conflicts or other related problems feel free to [contact us](
|
252 |
|
253 |
If any problem occurs, please contact us.
|
254 |
|
255 |
== Changelog ==
|
256 |
|
|
|
|
|
|
|
|
|
257 |
= 2.6.11 =
|
258 |
* Update of the language functionality
|
259 |
* Multi language support
|
@@ -373,6 +377,10 @@ If any problem occurs, please contact us.
|
|
373 |
|
374 |
== Upgrade Notice ==
|
375 |
|
|
|
|
|
|
|
|
|
376 |
= 2.6.11 =
|
377 |
Update of the language functionality
|
378 |
Multi language support
|
@@ -487,4 +495,71 @@ Scroll effect for Express Panel
|
|
487 |
|
488 |
= 2.4.2 =
|
489 |
Updated statistics, added new reset button
|
490 |
-
Small code fixes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
=== Gallery - Photo Gallery and Images Gallery ===
|
2 |
Contributors: gallerysupport, robosoft
|
3 |
+
Donate link: https://robosoft.co/robogallery
|
4 |
Tags: gallery, photo gallery, images gallery, gallery images, responsive gallery, categories gallery, Polaroid gallery, gallery lightbox, portfolio gallery, video gallery, Gallery Plugin, Robo Gallery
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 2.6.12
|
8 |
License: GPLv2 or later
|
9 |
+
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
|
12 |
|
14 |
|
15 |
= Gallery - Robo Gallery =
|
16 |
|
17 |
+
#### [Gallery Most Easy and Powerful plugin to create attractive image section on your WordPress website.](https://robosoft.co/robogallery/#overview)
|
18 |
|
19 |
+
#### Gallery on your website it's really attractive and very important part of your pages. If you looking for fast, easy gallery with simple and very beautiful, highly customizable design [here is it...](https://robosoft.co/robogallery/#overview) Gallery where even newbie in Wordpress will be able to create your first gallery in few minutes and at the same time Wordpress professionals get advanced tools and freedom of creativity. Just download this Gallery and you'll not look for any other gallery any more! [Fall in Love with this Gallery like we do!](https://robosoft.co/robogallery/#overview)
|
20 |
|
21 |
> #### New function
|
22 |
>
|
29 |
|
30 |
> #### Gallery Demos
|
31 |
>
|
32 |
+
>[Multi Categories Cars Gallery Demo](https://robosoft.co/demo/gallery/cars-gallery-demo/)
|
33 |
>
|
34 |
+
>[Grid Layout Gallery Demo with Fade hover effect](https://robosoft.co/demo/gallery/custom-layout/)
|
35 |
>
|
36 |
+
>[Multi Categories Polaroid style Movie Gallery Demo with classic layout](https://robosoft.co/demo/gallery/gallery-demo-movie/)
|
37 |
>
|
38 |
+
>[Design Sketch Gallery Demo with grid layout](https://robosoft.co/demo/gallery/gallery-design/)
|
39 |
>
|
40 |
+
>[Multi Categories Gallery Demo with custom interface colors and classic layout](https://robosoft.co/demo/gallery/push-effect-demo/)
|
41 |
>
|
42 |
+
>[Video Gallery Demo with grid layout](https://robosoft.co/demo/gallery/design-video-gallery)
|
43 |
|
44 |
|
45 |
= Gallery Key Features =
|
152 |
* **Gallery Custom Layout** - Advanced options for customization layout of the gallery. Ability to define custom size and columns amount of the gallery for different screen resolution. Ability to enable auto size option different way for every gallery screen size resolution. Every gallery image have columns option where you can customize size of the image. Every image could take different amount of columns.
|
153 |
* **Gallery Lightbox customization** - Gallery lightbox support set of advanced functionality. You can easily enable social buttons in gallery lightbox or change galley images description font color. With color selector you can change color and transparency of the gallery lightbox background.
|
154 |
* **Clone Gallery** - Gallery will copy all settings from selected source gallery. Very useful option for the webmasters who planning to create a lot of galleries. You don't have to configure gallery every time. Just setup styles of the gallery in one place and use the same options for another galleries on your website in another galleries. Very fast, comfortable, advanced tool to speed up your workflow!
|
155 |
+
* **Gallery Compatibility** - Gallery implemented in native Wordpress style. All code implemented based on Wordpress api and base classes. Also we tried in our gallery code avoid conflicts with other plugins and libraries. If you accordantly meet with some errors, conflicts or other related problems feel free to [contact us](https://robosoft.co/clients) and we'll to sort everything in short time. Also we have implemented set of gallery options which allow you to manager your gallery general settings to avoid conflicts.
|
156 |
* **Secure Gallery** - Gallery hard tested and followed all security requirements to avoid any security problems in our gallery.
|
157 |
* **Gallery Posts** - in gallery implemented advanced posts manager. For every gallery possible to create multiply posts. Gallery posts manager have options for customization titles, slug, category and customizable text.
|
158 |
* **Advanced gallery columns** - in gallery implemented advanced customizable thumbnails columns management. In gallery settings you can define different amount of thumbnails columns for different screen size/resolution.
|
164 |
|
165 |
> #### Useful Gallery Links
|
166 |
>
|
167 |
+
>[Multi Categories Cars Gallery Demo](https://robosoft.co/demo/gallery/cars-gallery-demo/)
|
168 |
>
|
169 |
+
>[Grid Layout Gallery Demo with Fade hover effect](https://robosoft.co/demo/gallery/custom-layout/)
|
170 |
>
|
171 |
+
>[Multi Categories Polaroid style Movie Gallery Demo with classic layout](https://robosoft.co/demo/gallery/gallery-demo-movie/)
|
172 |
>
|
173 |
+
>[Design Sketch Gallery Demo with grid layout](https://robosoft.co/demo/gallery/gallery-design/)
|
174 |
>
|
175 |
+
>[Multi Categories Gallery Demo with custom interface colors and classic layout](https://robosoft.co/demo/gallery/push-effect-demo/)
|
176 |
>
|
177 |
+
>[Video Gallery Demo with grid layout](https://robosoft.co/demo/gallery/design-video-gallery)
|
178 |
>
|
179 |
+
>[Technical Support for Robo Gallery](https://robosoft.co/robogallery)
|
180 |
>
|
181 |
+
>[Find More Details about Robo Gallery](https://robosoft.co/robogallery)
|
182 |
|
183 |
|
184 |
== Installation ==
|
248 |
|
249 |
= Gallery Compatibility =
|
250 |
|
251 |
+
Gallery implemented in native Wordpress style. All code implemented based on Wordpress api and base classes. Also we tried in our gallery code avoid conflicts with other plugins and libraries. If you accordantly meet with some errors, conflicts or other related problems feel free to [contact us](https://robosoft.co/clients) and we'll to sort everything in short time.
|
252 |
|
253 |
If any problem occurs, please contact us.
|
254 |
|
255 |
== Changelog ==
|
256 |
|
257 |
+
= 2.6.12 =
|
258 |
+
* Fix of the admin interface
|
259 |
+
* Updated category management dialog
|
260 |
+
|
261 |
= 2.6.11 =
|
262 |
* Update of the language functionality
|
263 |
* Multi language support
|
377 |
|
378 |
== Upgrade Notice ==
|
379 |
|
380 |
+
= 2.6.12 =
|
381 |
+
Fix of the admin interface
|
382 |
+
Updated category management dialog
|
383 |
+
|
384 |
= 2.6.11 =
|
385 |
Update of the language functionality
|
386 |
Multi language support
|
495 |
|
496 |
= 2.4.2 =
|
497 |
Updated statistics, added new reset button
|
498 |
+
Small code fixes
|
499 |
+
|
500 |
+
==Wordpress Gallery Step by Step Guide==
|
501 |
+
|
502 |
+
= Step 1: Gallery installation =
|
503 |
+
|
504 |
+
1.1. Installation.
|
505 |
+
|
506 |
+
Log-in to your WordPress administrator panel.
|
507 |
+
Open wordpress plugin manager.
|
508 |
+
Click add plugin button. Select gallery archive from your PC. In the case if you download this plugin from directory.
|
509 |
+
For the case if you don't have downloaded gallery on your PC you can easily find it in directory.
|
510 |
+
Just put gallery text into search field and you can see our plugin in search results.
|
511 |
+
|
512 |
+
= Step 2: Create new gallery =
|
513 |
+
|
514 |
+
Open gallery list in left menu block of admin section. In gallery list you can select some item for edit or create new.
|
515 |
+
When you open this section on top you can see block of the buttons: Statistics gallery, Backup gallery, Add gallery.
|
516 |
+
Click on Add gallery button. Configure settings and save new gallery. Click on publish button to save gallery.
|
517 |
+
|
518 |
+
= Step 3: Upload image for the gallery =
|
519 |
+
|
520 |
+
Open gallery list in left menu block of admin section. In gallery list you can select some item for edit or create new.
|
521 |
+
When you open gallery for edit on right side you can find Manage images button. Click on manage images button and you'll see media manager section of the gallery. In media manager you can see Add to gallery section where you can upload images or manage already uploaded images. You can drag and drop images to this block or use browse images button. You can sort image if you drag and drop them in the list.
|
522 |
+
|
523 |
+
= Step 4: Gallery interface configuration =
|
524 |
+
|
525 |
+
Open gallery list in left menu block of admin section. In gallery list you can select some item for edit or create new.
|
526 |
+
In settings section you can find thumbnails view options block. There you can configure settings for the pictures borders, shadows and spacing. All thumbnails background colors for the static and hovered images.
|
527 |
+
Another block of the options which helps to configure interface it's Menu options. In menu options you can setup gallery menu. In gallery menu settiongs you can configure view and action of the gallery navigation. In additional parameters you can change menu modes to enable categories or tags on top of the gallery.
|
528 |
+
Another function which could be configured there it's gallery search option.
|
529 |
+
|
530 |
+
= Step 5: Configuration layout of the gallery =
|
531 |
+
|
532 |
+
Gallery layout could be configured depend of your needs. It's absolutely flexible. Strucuture of the gallery thumbnails consist of columns which could be defined in Gallery size options. In size options tab we have set of the options for column amount in different screen size. At the same time in gallery images manager every image also have columns option. This option make you able to define how much columns from the general gallery layout every image gonna take.
|
533 |
+
By default every image take only one column. With this combination you can create absolutely different layout for every gallery.
|
534 |
+
|
535 |
+
= Step 6: Hover effects of the gallery modification =
|
536 |
+
|
537 |
+
Open gallery list in left menu block of admin section. In gallery list you can select some item for edit or create new.
|
538 |
+
Scroll down to the hover options where you can fully change hover effect settings. Enable/Disable Click thumbnails option. Differrent modes for mobile gallery and for photo gallery on pc. We have implemented 15 hover animation effects. In hover settings you can enable Fade effect for the gallery. All gallery interface elements are fully customzable. You can setup layout of the hovered image depend of your needs. Show or hide link button, zoom button, image descripiton, image title, image caption, video button.
|
539 |
+
Change color of the text or background of every gallery interface element.
|
540 |
+
|
541 |
+
= Demo 1: Gallery with thumbnails view, icons, load more, image hover, grid layout =
|
542 |
+
|
543 |
+
Thumbnail gallery with top navigation menu. Every thumbnails have image description, image border. Pictures have images hover animation. When image on hovered gallery show title, description and zoom button. When you click on image you can see lightbox with image carousel. On lightbox you can see facebook sharing button to make facebook gallery. Gallery menu have flat buttons.
|
544 |
+
|
545 |
+
= Demo 2: Grid gallery, hover effect with buttons, gallery widget, image title, gallery lightbox =
|
546 |
+
|
547 |
+
This gallery grid have images with different size. Some of thumbnails take few columns some image just one column. As result you can see gallery grid with different size thumbnails mix. Hovered images have image description and zoom button which show gallery lightbox after click. Thumbnails without borders have rounded corners. Icons and colors of the hover buttons are customized. You can select different icon with wizard in backend.
|
548 |
+
|
549 |
+
= Demo 3: Photo album, polaroid gallery view, content panel, fullscreen gallery, albums, blog menu =
|
550 |
+
|
551 |
+
This is th best gallery to create polaroid style views. Set of options make you able to configure content panel below picture. Select colors, styles and content source from image title, image description or image caption. In combination with no border thumbnails and shadow images looks very attractive.
|
552 |
+
Lightbox effect have animation when it's load. Lightbox load after click on hover button. Lightbox support additional interface elements like description panel, images counter, facebook share, twitter share, google+ share.
|
553 |
+
|
554 |
+
= Demo 4: Galley, masonry gallery, mansonry photos, masonry layout =
|
555 |
+
|
556 |
+
Masonry layout of the gallery could be customized in general options block of the settings. Combining settings of the image layout and gallery layout. There's no limits for the gallery view everything depends of your needs. Masonry photos could be customized in images manager. Open additional masonry picture options panel to defind some custom settings for the picture.
|
557 |
+
|
558 |
+
= Demo 5: Photo gallery, picture gallery, photography, gallery carousel, gallery slideshow =
|
559 |
+
|
560 |
+
The same size square thumbnails of the gallery. Image borders with hover effect and popup panel with description or image title as content source. When you open enlarged image in lightbox you can see gallery slideshow from the images. Is it possible to change images like in gallery carousel. Picture thumbnail have border and shadows. This shadows could have different colors and size on static and hovered status. Top gallery menu have red color flat style.
|
561 |
+
|
562 |
+
= Demo 6: Mosaic gallery, youtube gallery, vimeo gallery, video gallery =
|
563 |
+
|
564 |
+
Mosaic gallery with youtube or vimeo content. Customized layout with different size thumbnails. Album images have additional parameters where you can specify video links. With such links you can easily create Youtube gallery or Vimeo gallery. When you setup video gallery you can click on every thumbnail of the gallery and after that you can see video in lightbox. Strucuture of the gallery thumbnails consist of columns which could be defined in Gallery size options. In size options tab we have set of the options for column amount in different screen size. At the same time in gallery images manager every image also have columns option. This option make you able to define how much columns from the general gallery layout every image gonna take.
|
565 |
+
By default every image take only one column. With this combination you can create absolutely different layout for every gallery.
|
robogallery.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Robo Gallery
|
4 |
Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
|
5 |
-
Version: 2.6.
|
6 |
Author: RoboSoft
|
7 |
Plugin URI: http://robosoft.co/gallery
|
8 |
Author URI: http://robosoft.co/gallery
|
@@ -15,12 +15,12 @@ if(!defined('WPINC'))die;
|
|
15 |
if(!defined("ABSPATH"))exit;
|
16 |
|
17 |
define("ROBO_GALLERY", 1);
|
18 |
-
define("ROBO_GALLERY_VERSION", '2.6.
|
19 |
|
20 |
if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
21 |
|
22 |
define("ROBO_GALLERY_SPECIAL", 1);
|
23 |
-
define("ROBO_GALLERY_EVENT_DATE", '2017-05-
|
24 |
define("ROBO_GALLERY_EVENT_HOUR", 24);
|
25 |
|
26 |
add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
|
2 |
/*
|
3 |
Plugin Name: Robo Gallery
|
4 |
Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
|
5 |
+
Version: 2.6.12
|
6 |
Author: RoboSoft
|
7 |
Plugin URI: http://robosoft.co/gallery
|
8 |
Author URI: http://robosoft.co/gallery
|
15 |
if(!defined("ABSPATH"))exit;
|
16 |
|
17 |
define("ROBO_GALLERY", 1);
|
18 |
+
define("ROBO_GALLERY_VERSION", '2.6.12');
|
19 |
|
20 |
if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
|
21 |
|
22 |
define("ROBO_GALLERY_SPECIAL", 1);
|
23 |
+
define("ROBO_GALLERY_EVENT_DATE", '2017-05-28');
|
24 |
define("ROBO_GALLERY_EVENT_HOUR", 24);
|
25 |
|
26 |
add_action( 'plugins_loaded', 'rbs_gallery_load_textdomain' );
|