Slide Anything – Responsive Content / HTML Slider and Carousel - Version 2.2.3

Version Description

  • Bug Fix - Resolved small non-fatal issue to remove "Notice: Undefined index: ../php/slide-anything-frontend.php on line 66" message

=

Download this release

Release Info

Developer simonpedge
Plugin Icon 128x128 Slide Anything – Responsive Content / HTML Slider and Carousel
Version 2.2.3
Comparing to
See all releases

Code changes from version 2.2.2 to 2.2.3

php/slide-anything-frontend.php CHANGED
@@ -63,7 +63,10 @@ function slide_anything_shortcode($atts) {
63
  } else {
64
  $slide_data["slide".$i."_content"] = $metadata["sa_slide".$i."_content"][0];
65
  }
66
- $slide_image_data = $metadata["sa_slide".$i."_image_data"][0];
 
 
 
67
  if (isset($slide_image_data) && ($slide_image_data != '')) {
68
  $data_arr = explode("~", $slide_image_data);
69
  $slide_data["slide".$i."_image_id"] = $data_arr[0];
63
  } else {
64
  $slide_data["slide".$i."_content"] = $metadata["sa_slide".$i."_content"][0];
65
  }
66
+ $slide_image_data = '';
67
+ if (isset($metadata["sa_slide".$i."_image_data"])) {
68
+ $slide_image_data = $metadata["sa_slide".$i."_image_data"][0];
69
+ }
70
  if (isset($slide_image_data) && ($slide_image_data != '')) {
71
  $data_arr = explode("~", $slide_image_data);
72
  $slide_data["slide".$i."_image_id"] = $data_arr[0];
readme.txt CHANGED
@@ -268,6 +268,9 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
268
  = 2.2.2 =
269
  * Bug Fix - Issue with "Thumbnail Pagination" data being saved on 'Non-PRO' installations - causing a fatal error.
270
 
 
 
 
271
  == Upgrade Notice ==
272
 
273
  = 1.0 =
@@ -442,3 +445,6 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
442
 
443
  = 2.2.2 =
444
  * Bug Fix - Issue with "Thumbnail Pagination" data being saved on 'Non-PRO' installations - causing a fatal error.
 
 
 
268
  = 2.2.2 =
269
  * Bug Fix - Issue with "Thumbnail Pagination" data being saved on 'Non-PRO' installations - causing a fatal error.
270
 
271
+ = 2.2.3 =
272
+ * Bug Fix - Resolved small non-fatal issue to remove "Notice: Undefined index: ../php/slide-anything-frontend.php on line 66" message
273
+
274
  == Upgrade Notice ==
275
 
276
  = 1.0 =
445
 
446
  = 2.2.2 =
447
  * Bug Fix - Issue with "Thumbnail Pagination" data being saved on 'Non-PRO' installations - causing a fatal error.
448
+
449
+ = 2.2.3 =
450
+ * Bug Fix - Resolved small non-fatal issue to remove "Notice: Undefined index: ../php/slide-anything-frontend.php on line 66" message
slide-anything.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://wordpress.org/plugins/slide-anything/
5
  * Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
6
  * Author: Simon Edge
7
- * Version: 2.2.2
8
  * License: GPLv2 or later
9
  */
10
 
4
  * Plugin URI: https://wordpress.org/plugins/slide-anything/
5
  * Description: Slide Anything allows you to create a carousel/slider where the content for each slide can be anything you want - images, text, HTML, and even shortcodes. This plugin uses the Owl Carousel jQuery plugin, and lets you create beautiful, touch enabled, responsive carousels and sliders.
6
  * Author: Simon Edge
7
+ * Version: 2.2.3
8
  * License: GPLv2 or later
9
  */
10