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

Version Description

  • Small Bug Fix to fix a clash with the 'Woody Snippets' plugin within the WordPress Dashboard

=

Download this release

Release Info

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

Code changes from version 2.3.21 to 2.3.22

php/slide-anything-admin.php CHANGED
@@ -374,12 +374,12 @@ function get_tinymce_shortcode_array() {
374
  $args = array('post_type' => 'sa_slider', 'post_status' => 'publish', 'posts_per_page' => -1);
375
  $sa_slider_query = new WP_Query($args);
376
  $count = 0;
377
- while ($sa_slider_query->have_posts()) : $sa_slider_query->the_post();
378
- $title = get_the_title();
379
  echo "sa_title_arr[".$count."] = '".$title."';\n";
380
- echo "sa_id_arr[".$count."] = '".get_the_ID()."';\n";
381
  $count++;
382
- endwhile;
383
  echo "</script>\n";
384
  }
385
  }
374
  $args = array('post_type' => 'sa_slider', 'post_status' => 'publish', 'posts_per_page' => -1);
375
  $sa_slider_query = new WP_Query($args);
376
  $count = 0;
377
+ foreach ($sa_slider_query->posts as $sa_post) {
378
+ $title = $sa_post->post_title;
379
  echo "sa_title_arr[".$count."] = '".$title."';\n";
380
+ echo "sa_id_arr[".$count."] = '".$sa_post->ID."';\n";
381
  $count++;
382
+ }
383
  echo "</script>\n";
384
  }
385
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: simonpedge
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RP7JLGK6VT252
4
  Tags: slider, carousel, content slider, responsive slider, html slider, owl carousel
5
  Requires at least: 4.0
6
- Tested up to: 5.4
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -359,6 +359,9 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
359
  = 2.3.21 =
360
  * Small Bug Fix to remove PHP Notice (warnings) within 'slide-anything-admin.php' for possible undefined indexs for 'popup_type', 'popup_video_type' and 'popup_video_id'
361
 
 
 
 
362
  == Upgrade Notice ==
363
 
364
  = 1.0 =
@@ -619,4 +622,7 @@ Adding a SLIDE ANYTHING slider using the WordPress 5.0 'Block Editor' is pretty
619
  * Added a new feature 'Slide Goto Links', which allows the creation of links (or buttons) that when clicked will go to a specific slide within your slider.
620
 
621
  = 2.3.21 =
622
- * Small Bug Fix to remove PHP Notice (warnings) within 'slide-anything-admin.php' for possible undefined indexs for 'popup_type', 'popup_video_type' and 'popup_video_id'
 
 
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RP7JLGK6VT252
4
  Tags: slider, carousel, content slider, responsive slider, html slider, owl carousel
5
  Requires at least: 4.0
6
+ Tested up to: 5.5
7
  Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
359
  = 2.3.21 =
360
  * Small Bug Fix to remove PHP Notice (warnings) within 'slide-anything-admin.php' for possible undefined indexs for 'popup_type', 'popup_video_type' and 'popup_video_id'
361
 
362
+ = 2.3.22 =
363
+ * Small Bug Fix to fix a clash with the 'Woody Snippets' plugin within the WordPress Dashboard
364
+
365
  == Upgrade Notice ==
366
 
367
  = 1.0 =
622
  * Added a new feature 'Slide Goto Links', which allows the creation of links (or buttons) that when clicked will go to a specific slide within your slider.
623
 
624
  = 2.3.21 =
625
+ * Small Bug Fix to remove PHP Notice (warnings) within 'slide-anything-admin.php' for possible undefined indexs for 'popup_type', 'popup_video_type' and 'popup_video_id'
626
+
627
+ = 2.3.22 =
628
+ * Small Bug Fix to fix a clash with the 'Woody Snippets' plugin within the WordPress Dashboard
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.3.21
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.3.22
8
  * License: GPLv2 or later
9
  */
10