Gallery – Photo Gallery and Images Gallery - Version 2.7.14

Version Description

  • fix of the image manager addditional fields values validation
Download this release

Release Info

Developer robosoft
Plugin Icon 128x128 Gallery – Photo Gallery and Images Gallery
Version 2.7.14
Comparing to
See all releases

Code changes from version 2.7.13 to 2.7.14

includes/rbs_gallery_media.php CHANGED
@@ -145,7 +145,7 @@ add_action('admin_head', 'robo_gallery_hide_fieldattachment');
145
 
146
  function robo_gallery_attachment_field_credit_save( $post, $attachment ) {
147
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_tags'] ) )
148
- update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_tags', $attachment[ROBO_GALLERY_PREFIX.'gallery_tags'] );
149
 
150
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_video_link'] ) )
151
  update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_video_link', esc_url( $attachment[ROBO_GALLERY_PREFIX.'gallery_video_link'] ) );
@@ -155,14 +155,14 @@ add_action('admin_head', 'robo_gallery_hide_fieldattachment');
155
 
156
 
157
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_type_link'] ) )
158
- update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_type_link', $attachment[ROBO_GALLERY_PREFIX.'gallery_type_link'] );
159
 
160
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_col'] ) )
161
- update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_col', $attachment[ROBO_GALLERY_PREFIX.'gallery_col'] );
162
 
163
 
164
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_effect'] ) )
165
- update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_effect', $attachment[ROBO_GALLERY_PREFIX.'gallery_effect'] );
166
 
167
  return $post;
168
  }
145
 
146
  function robo_gallery_attachment_field_credit_save( $post, $attachment ) {
147
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_tags'] ) )
148
+ update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_tags', sanitize_text_field($attachment[ROBO_GALLERY_PREFIX.'gallery_tags']) );
149
 
150
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_video_link'] ) )
151
  update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_video_link', esc_url( $attachment[ROBO_GALLERY_PREFIX.'gallery_video_link'] ) );
155
 
156
 
157
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_type_link'] ) )
158
+ update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_type_link', sanitize_text_field($attachment[ROBO_GALLERY_PREFIX.'gallery_type_link']) );
159
 
160
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_col'] ) )
161
+ update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_col', (int) $attachment[ROBO_GALLERY_PREFIX.'gallery_col'] );
162
 
163
 
164
  if( isset( $attachment[ROBO_GALLERY_PREFIX.'gallery_effect'] ) )
165
+ update_post_meta( $post['ID'], ROBO_GALLERY_PREFIX.'gallery_effect', sanitize_text_field($attachment[ROBO_GALLERY_PREFIX.'gallery_effect']) );
166
 
167
  return $post;
168
  }
includes/rbs_gallery_menu.php CHANGED
@@ -46,19 +46,6 @@ if(!function_exists('robo_gallery_about_submenu_page')){
46
  }
47
 
48
 
49
- if(!function_exists('robo_gallery_cat_submenu_page') && 2==3){
50
- add_action('admin_menu', 'robo_gallery_cat_submenu_page');
51
- function robo_gallery_cat_submenu_page() {
52
- add_submenu_page( 'edit.php?post_type=robo_gallery_table', 'Category Robo Gallery', 'Category', 'manage_options', 'robo-gallery-cat', 'robo_gallery_cat_submenu_page_render' );
53
- }
54
- function robo_gallery_cat_submenu_page_render(){
55
- rbs_gallery_include('categoryPage/category.class.php', ROBO_GALLERY_EXTENSIONS_PATH);
56
- //rbs_gallery_include('category.class.php', plugin_dir_path( __FILE__ ) );
57
- new ROBO_GALLERY_CATEGORY_PAGE( ROBO_GALLERY_TYPE_POST );
58
- }
59
- }
60
-
61
-
62
  if(!function_exists('robo_gallery_support_submenu_page')){
63
  add_action('admin_menu', 'robo_gallery_support_submenu_page');
64
  function robo_gallery_support_submenu_page() {
46
  }
47
 
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  if(!function_exists('robo_gallery_support_submenu_page')){
50
  add_action('admin_menu', 'robo_gallery_support_submenu_page');
51
  function robo_gallery_support_submenu_page() {
includes/rbs_gallery_settings.php CHANGED
@@ -83,46 +83,52 @@ class Robo_Gallery_Settings {
83
 
84
  $this->enqueue();
85
 
86
- $this->active_tab = sanitize_title( isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'cache' );
87
 
88
- echo '
89
- <div class="wrap">
90
- <h1>'.__('Robo Gallery Settings', 'robo-gallery').'</h1>';
91
 
92
- settings_errors();
93
 
94
- $this->tabs();
95
 
96
- echo '<form method="post" action="options.php?tab='.$this->active_tab.'">';
97
-
98
- echo '<table class="form-table">';
99
-
100
- if( $this->active_tab == 'cache' ) {
101
- settings_fields( 'robo_gallery_settings_cache' );
102
- do_settings_sections( 'robo_gallery_settings_cache' );
103
- $this->cacheOptions();
104
- } elseif( $this->active_tab == 'comp' ) {
105
- settings_fields( 'robo_gallery_settings_comp' );
106
- do_settings_sections( 'robo_gallery_settings_comp' );
107
- $this->compOptions();
108
- } elseif( $this->active_tab == 'post' ) {
109
- settings_fields( 'robo_gallery_settings_post' );
110
- do_settings_sections( 'robo_gallery_settings_post' );
111
- $this->postOptions();
112
- } else {
113
- settings_fields( 'robo_gallery_settings_seo' );
114
- do_settings_sections( 'robo_gallery_settings_seo' );
115
- $this->seoOptions();
116
- }
117
-
118
- echo '</table>';
119
-
120
- submit_button();
121
 
122
- echo '
123
- </form>
124
- </div>
125
- <div class="rbs_about_string2">Copyright &copy; 2014 - 2018 <a href="https://robosoft.co/robogallery">RoboSoft</a> All Rights Reserved</div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
  }
128
 
83
 
84
  $this->enqueue();
85
 
86
+ $this->active_tab = isset( $_GET[ 'tab' ] ) ? sanitize_title($_GET[ 'tab' ]) : 'cache' ;
87
 
88
+ echo '<div class="wrap">';
89
+ echo '<h1>'.__('Robo Gallery Settings', 'robo-gallery').'</h1>';
 
90
 
91
+ settings_errors();
92
 
93
+ $this->tabs();
94
 
95
+ echo '<form method="post" action="options.php?tab='.$this->active_tab.'">';
96
+
97
+ echo '<table class="form-table">';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
 
99
+ if( $this->active_tab == 'cache' ) {
100
+
101
+ settings_fields( 'robo_gallery_settings_cache' );
102
+ do_settings_sections( 'robo_gallery_settings_cache' );
103
+ $this->cacheOptions();
104
+
105
+ } elseif( $this->active_tab == 'comp' ) {
106
+
107
+ settings_fields( 'robo_gallery_settings_comp' );
108
+ do_settings_sections( 'robo_gallery_settings_comp' );
109
+ $this->compOptions();
110
+
111
+ } elseif( $this->active_tab == 'post' ) {
112
+
113
+ settings_fields( 'robo_gallery_settings_post' );
114
+ do_settings_sections( 'robo_gallery_settings_post' );
115
+ $this->postOptions();
116
+
117
+ } else {
118
+
119
+ settings_fields( 'robo_gallery_settings_seo' );
120
+ do_settings_sections( 'robo_gallery_settings_seo' );
121
+ $this->seoOptions();
122
+
123
+ }
124
+
125
+ echo '</table>';
126
+
127
+ submit_button();
128
+
129
+ echo '</form>';
130
+ echo '</div>';
131
+ echo '<div class="rbs_about_string2">Copyright &copy; 2014 - 2018 <a href="https://robosoft.co/robogallery">RoboSoft</a> All Rights Reserved</div>';
132
 
133
  }
134
 
readme.txt CHANGED
@@ -1,29 +1,22 @@
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, wordpress gallery plugin, 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.9
7
- Stable tag: 2.7.13
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 lightbox, portfolio gallery, responsive gallery
12
 
13
  == Description ==
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
- >
23
- > Tags for gallery images. It's alternative navigation mode in gallery. You can easily switch between regular gallery categories filter on top to the tags mode
24
- >
25
-
26
- = Install and create your first WordPress gallery in few minutes =
27
 
28
  [youtube https://www.youtube.com/watch?v=m9XIeqMnhYI&feature=youtu.be]
29
 
@@ -115,54 +108,6 @@ This interface gallery button have wide range of the front end interface customi
115
  * **Drag and Drop Categories Gallery Manager** - in gallery implemented advanced categories gallery manager with drag and drop functionality. Categories gallery manager with simple and intuitive interface.
116
 
117
 
118
- = Robo Gallery Advantages =
119
-
120
- Robo Gallery it's wordpress gallery plugin which could help you to create different images gallery. Robo gallery could be used as photo gallery, classic images gallery with traditional layout and square thumbnails or as Polaroid gallery. Robo gallery have different configuration settings which gonna help to create porfolio gallery with your projects images. Robo gallery could be also used as video gallery on your website.
121
-
122
- = Responsive gallery =
123
-
124
- Robo gallery it's responsive gallery what is really important for the website page rank. Robo gallery work on mobile devices as stable part of your website interface. Robo gallery lightbox also fully responsive and mobile devices friendly.
125
-
126
- = Polaroid gallery =
127
-
128
- Robo gallery have built-in Polaroid gallery mode. When you turn on Polaroid gallery mode every thumbnail of the photo gallery will have additional panel below thumbnails where you can publish title, description or caption of images gallery.
129
-
130
- = Portfolio gallery =
131
-
132
- Images gallery it's a best form to represent your portfolio on your website. With Robo photo gallery you can easily build your portfolio with images galleries, video galleries. Every images gallery could have different settings. You can create absolutely different photo galleries on your page which fit to your needs and design the best way.
133
-
134
- = Video gallery, gallery lightbox, gallery links =
135
-
136
- Robo gallery have advanced functionality which provide you ide range of settings for configuring gallery images links, video galleries and gallery lightbox. Every images gallery have link and video link options where you can specify proper value for every element of the photo gallery. For your video gallery you can use videos hosted on Youtube or Vimeo. Image settings have field where you can define direct link to this gallery. Gallery lightbox have different settings for interface styling.
137
-
138
- = Categories Gallery =
139
-
140
- Categories gallery it's very important and useful functionality of the gallery. With categories function gallery images will be split into separate categories and navigated by top menu between different galleries. As alternative function to the categories in top menu of the gallery implemented gallery tags mode. When every gallery image could have tags defined in gallery image settings.
141
-
142
- Robo Gallery is one of the most powerful wordpress gallery. With Robo Gallery you can create portfolio, lightbox gallery, multi categories gallery, video gallery and much more interesting functionality already included into gallery package. If you looking for some new gallery features, which do not implemented yet in our gallery just send an email to our support team.
143
-
144
-
145
- = Gallery Functionality =
146
-
147
- * **Gallery Images and Videos** - Robo Gallery support different type of the content. You can upload to the gallery images, insert links to the video gallery to Youtube or Vimeo.
148
- * **Gallery Borders and Shadows** - All borders and shadows of the gallery thumbnails have multiply configuration options. You can fully customize size, color, transparency of gallery interface. Shadow also have additional blur option for gallery thumbnails shadow. All options could be configured with slider control or defined values manually in edit fields of the gallery options.
149
- * **Styling Text of the Gallery** - All text on the front end gallery interface could be styled in backend. For title and description of the gallery images we have advanced settings for customization of the font. You can select font style, size and colors for the static and hovered text of the front end gallery interface elements. Use HTML tags in gallery thumbnails description.
150
- * **Gallery Icons Library** - For link and zoom gallery buttons integrated advanced icons selector with library of the hundreds icons. Every gallery button have fully customizable color settings for borders, backgrounds, icon colors of the gallery thumbnails. Different for static and hovered gallery buttons.
151
- * **Gallery Color Selectors** - For all front end gallery interface elements implemented very comfortable color selector. With color selector your can define color multiply ways. For every gallery interface element you can select transparency for the color. Colors could be defined in HEX or RGB style.
152
- * **Advanced Media Manager of the Gallery** - Upload of the images into gallery implemented with advanced drag and drop media manager. Batch upload of the gallery images by one click. Gallery media manager have wide set of the options for sorting gallery images, crop, rotate, flip, scale of the original gallery image.
153
- * **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.
154
- * **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.
155
- * **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!
156
- * **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.
157
- * **Secure Gallery** - Gallery hard tested and followed all security requirements to avoid any security problems in our gallery.
158
- * **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.
159
- * **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.
160
- * **Advanced gallery menu settings** - in gallery implemented advanced customizable options for navigation menu. Gallery have advanced structure with ability to customize styles of the gallery menus.
161
- * **Thumbnails size** - in gallery implemented customizable options for thumbnails size definition and complex interface building. Gallery options have source size options where you can easily switch between size of the gallery thumbnails.
162
- * **SEO optimized code** - in gallery implemented few front end code output modes. One simplified mode with all core front end gallery code elements another mode with additional not visible elements.
163
- * **Multi site** - in gallery implemented multisite support. You can install gallery in admin dashboard and enable plugin for all child blogs. You don't need to configure any special settings for multisite in our plugin. Multi site mode switch on automatically.
164
- * **Backup function** - our plugin have advanced backup feature. In backup section you can create copy of the settings and images. We have implemented few modes you can create full backup of the settings and images and restore this configuration on some other location or even on this website after re-configuration of the page.
165
-
166
  > #### Useful Gallery Links
167
  >
168
  >[Multi Categories Cars Gallery Demo](https://robosoft.co/demo/gallery/cars-gallery-demo/)
@@ -259,6 +204,9 @@ If any problem occurs, please contact us.
259
 
260
  == Changelog ==
261
 
 
 
 
262
  = 2.7.13 =
263
  * fixed of the outdated code elements, modification of the general structure of some gallery interface elements
264
 
@@ -462,6 +410,9 @@ If any problem occurs, please contact us.
462
 
463
  == Upgrade Notice ==
464
 
 
 
 
465
  = 2.7.13 =
466
  fixed of the outdated code elements, modification of the general structure of some gallery interface elements
467
 
@@ -661,70 +612,3 @@ Scroll effect for Express Panel
661
  = 2.4.2 =
662
  Updated statistics, added new reset button
663
  Small code fixes
664
-
665
- ==Wordpress Step by Step Guide==
666
-
667
- Step 1: Installation
668
-
669
- 1.1. Installation.
670
-
671
- Log-in to your WordPress administrator panel.
672
- Open wordpress plugin manager.
673
- Click add plugin button. Select plugin archive from your PC. In the case if you download this plugin from directory.
674
- For the case if you don't have downloaded plugin on your PC you can easily find it in directory.
675
- Just put plugin title text into search field and you can see our plugin in search results.
676
-
677
- Step 2: Create new album.
678
-
679
- Open albums list section in left menu block of admin section. In list you can select some item for edit or create new.
680
- When you open this section on top you can see block of the buttons: Statistics, Backup, Add button.
681
- Click on Add button. Configure settings and save new photo album. Click on publish button to save it.
682
-
683
- Step 3: Upload image to the new album.
684
-
685
- Open list in left menu block of admin section. In list you can select some item for edit or create new.
686
- When you open photo album for edit on right side you can find Manage images button. Click on manage images button and you'll see media manager section. In media manager you can see Add images 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.
687
-
688
- Step 4: Interface configuration.
689
-
690
- Open list in left menu block of admin section. In list you can select some item for edit or create new.
691
- 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.
692
- Another block of the options which helps to configure interface it's Menu options. In menu options you can setup menu. In menu settings you can configure view and action of the photo album navigation. In additional parameters you can change menu modes to enable categories or tags on top.
693
- Another function which could be configured there it's search option.
694
-
695
- Step 5: Configuration grid layout.
696
-
697
- Layout could be configured depend of your needs. It's absolutely flexible. Strucuture of the thumbnails consist of columns which could be defined in size options. In size options tab we have set of the options for column amount in different screen size. At the same time in images manager every image also have columns option. This option make you able to define how much columns from the general photo album layout every image gonna take.
698
- By default every image take only one column. With this combination you can create absolutely different layout for every album.
699
-
700
- Step 6: Hover effects modification.
701
-
702
- Open albums list section in left menu block of admin section. In list you can select some item for edit or create new.
703
- Scroll down to the hover options where you can fully change hover effect settings. Enable/Disable Click thumbnails option. Differrent modes for mobile album and for photo album on pc. We have implemented 15 hover animation effects. In hover settings you can enable Fade effect. All image album 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.
704
- Change color of the text or background of every interface element.
705
-
706
- Demo 1: Thumbnails view, icons, load more, image hover, grid layout
707
-
708
- Thumbnails with top navigation menu. Every thumbnails have image description, image border. Pictures have images hover animation. When image on hovered 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 photo album. Photo album menu have flat buttons.
709
-
710
- Demo 2: Hover effect with buttons, image title, photo lightbox.
711
-
712
- This photo grid have images with different size. Some of thumbnails take few columns some image just one column. As result you can see photo album grid with different size thumbnails mix. Hovered images have image description and zoom button which show photo 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.
713
-
714
- Demo 3: Photo album, polaroid view, content panel, fullscreen lightbox, albums, blog menu.
715
-
716
- 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.
717
- 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.
718
-
719
- Demo 4: masonry, mansonry photos, masonry layout.
720
-
721
- Masonry layout could be customized in general options block of the settings. Combining settings of the image layout and masonry layout. There's no limits for the 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.
722
-
723
- Demo 5: Picture, photography, photo carousel, photo slideshow.
724
-
725
- The same size square thumbnails of the photo album. 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 photo slideshow from the images. Is it possible to change images like in image carousel. Picture thumbnail have border and shadows. This shadows could have different colors and size on static and hovered status. Top photo album menu have red color flat style.
726
-
727
- Demo 6: Mosaic, youtube video, vimeo video, video album.
728
-
729
- Mosaic photo album 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 album with Youtube or Vimeo. When you setup video album you can click on every thumbnail of the photo album and after that you can see video in lightbox. Strucuture of the album thumbnails consist of columns which could be defined in size options. In size options tab we have set of the options for column amount in different screen size. At the same time in album images manager every image also have columns option. This option make you able to define how much columns from the general thumbnails layout every image gonna take.
730
- By default every image take only one column. With this combination you can create absolutely different layout for every item.
1
+ === Gallery by Robo - Responsive Photo Image Gallery ===
2
  Contributors: gallerysupport, robosoft
3
  Donate link: https://robosoft.co/robogallery
4
+ Tags: gallery, photo gallery, image gallery, wordpress gallery plugin, responsive gallery
5
  Requires at least: 3.3
6
  Tested up to: 4.9
7
+ Stable tag: 2.7.14
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
11
+ Robo Gallery is advanced responsive photo gallery plugin. Flexible gallery images management tools. Links, videos and gallery lightbox support.
12
 
13
  == Description ==
14
 
 
 
15
  #### [Gallery Most Easy and Powerful plugin to create attractive image section on your WordPress website.](https://robosoft.co/robogallery/#overview)
16
 
17
  #### 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)
18
 
19
+ = Install and create your first WordPress gallery plugin in few minutes =
 
 
 
 
 
20
 
21
  [youtube https://www.youtube.com/watch?v=m9XIeqMnhYI&feature=youtu.be]
22
 
108
  * **Drag and Drop Categories Gallery Manager** - in gallery implemented advanced categories gallery manager with drag and drop functionality. Categories gallery manager with simple and intuitive interface.
109
 
110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  > #### Useful Gallery Links
112
  >
113
  >[Multi Categories Cars Gallery Demo](https://robosoft.co/demo/gallery/cars-gallery-demo/)
204
 
205
  == Changelog ==
206
 
207
+ = 2.7.14 =
208
+ * fix of the image manager addditional fields values validation
209
+
210
  = 2.7.13 =
211
  * fixed of the outdated code elements, modification of the general structure of some gallery interface elements
212
 
410
 
411
  == Upgrade Notice ==
412
 
413
+ = 2.7.14 =
414
+ fix of the image manager addditional fields values validation
415
+
416
  = 2.7.13 =
417
  fixed of the outdated code elements, modification of the general structure of some gallery interface elements
418
 
612
  = 2.4.2 =
613
  Updated statistics, added new reset button
614
  Small code fixes
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
robogallery.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Robo Gallery
4
  Plugin URI: https://robosoft.co/wordpress-gallery-plugin
5
  Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
6
- Version: 2.7.13
7
  Author: RoboSoft
8
  Author URI: https://robosoft.co/wordpress-gallery-plugin
9
  License: GPLv3 or later
@@ -15,7 +15,7 @@ if(!defined('WPINC'))die;
15
  if(!defined("ABSPATH"))exit;
16
 
17
  define("ROBO_GALLERY", 1);
18
- define("ROBO_GALLERY_VERSION", '2.7.13');
19
 
20
  if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21
 
3
  Plugin Name: Robo Gallery
4
  Plugin URI: https://robosoft.co/wordpress-gallery-plugin
5
  Description: Gallery modes photo gallery, images gallery, video gallery, Polaroid gallery, gallery lighbox, portfolio gallery, responsive gallery
6
+ Version: 2.7.14
7
  Author: RoboSoft
8
  Author URI: https://robosoft.co/wordpress-gallery-plugin
9
  License: GPLv3 or later
15
  if(!defined("ABSPATH"))exit;
16
 
17
  define("ROBO_GALLERY", 1);
18
+ define("ROBO_GALLERY_VERSION", '2.7.14');
19
 
20
  if( !defined("ROBO_GALLERY_PATH") ) define("ROBO_GALLERY_PATH", plugin_dir_path( __FILE__ ));
21