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

Version Description

  • Minor bug fix with Slide Anything PRO Software Licensing integration

=

Download this release

Release Info

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

Code changes from version 2.1.2 to 2.1.3

php/slide-anything-frontend.php CHANGED
@@ -7,7 +7,7 @@ add_shortcode('slide-anything', 'slide_anything_shortcode');
7
 
8
  /* ##### ROOT FUNCTION THAT IS CALLED TO BY THE 'slide-anything' SHORTCODE ##### */
9
  function slide_anything_shortcode($atts) {
10
- $sa_pro_version = validate_slide_anything_pro_registration();
11
  wp_enqueue_script('jquery');
12
  wp_register_script('owl_carousel_js', SA_PLUGIN_PATH.'owl-carousel/owl.carousel.min.js', array('jquery'), '2.2.1', true);
13
  wp_enqueue_script('owl_carousel_js');
@@ -30,7 +30,6 @@ function slide_anything_shortcode($atts) {
30
  'id' => 0,
31
  ), $atts));
32
  $output = '';
33
-
34
  if ($id == 0) {
35
  // SHORTCODE 'id' PARAMETER PROVIDED IS INVALID
36
  $output .= "<div id='sa_invalid_postid'>Slide Anything shortcode error: A valid ID has not been provided</div>\n";
7
 
8
  /* ##### ROOT FUNCTION THAT IS CALLED TO BY THE 'slide-anything' SHORTCODE ##### */
9
  function slide_anything_shortcode($atts) {
10
+ $sa_pro_version = esc_attr(get_option('sap_valid_license'));
11
  wp_enqueue_script('jquery');
12
  wp_register_script('owl_carousel_js', SA_PLUGIN_PATH.'owl-carousel/owl.carousel.min.js', array('jquery'), '2.2.1', true);
13
  wp_enqueue_script('owl_carousel_js');
30
  'id' => 0,
31
  ), $atts));
32
  $output = '';
 
33
  if ($id == 0) {
34
  // SHORTCODE 'id' PARAMETER PROVIDED IS INVALID
35
  $output .= "<div id='sa_invalid_postid'>Slide Anything shortcode error: A valid ID has not been provided</div>\n";
readme.txt CHANGED
@@ -192,6 +192,9 @@ The `SLIDE STYLE` settings are the style settings for each individual slide with
192
  * Added a new feature to allow you to set slider minimum height in pixels
193
  * Added a new feature so that each slide within a slider has its own unique CSS ID
194
 
 
 
 
195
  == Upgrade Notice ==
196
 
197
  = 1.0 =
@@ -298,4 +301,7 @@ The `SLIDE STYLE` settings are the style settings for each individual slide with
298
 
299
  = 2.1.2 =
300
  * Added a new feature to allow you to set slider minimum height in pixels
301
- * Added a new feature so that each slide within a slider has its own unique CSS ID
 
 
 
192
  * Added a new feature to allow you to set slider minimum height in pixels
193
  * Added a new feature so that each slide within a slider has its own unique CSS ID
194
 
195
+ = 2.1.3 =
196
+ * Minor bug fix with Slide Anything PRO Software Licensing integration
197
+
198
  == Upgrade Notice ==
199
 
200
  = 1.0 =
301
 
302
  = 2.1.2 =
303
  * Added a new feature to allow you to set slider minimum height in pixels
304
+ * Added a new feature so that each slide within a slider has its own unique CSS ID
305
+
306
+ = 2.1.3 =
307
+ * Minor bug fix with Slide Anything PRO Software Licensing integration
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.1.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.1.3
8
  * License: GPLv2 or later
9
  */
10