Slider by Soliloquy – Responsive Image Slider for WordPress - Version 2.2.9

Version Description

  • Added: is_mobile() checking enhanced to also use wp_is_mobile() if other checks return false
Download this release

Release Info

Developer n7studios
Plugin Icon 128x128 Slider by Soliloquy – Responsive Image Slider for WordPress
Version 2.2.9
Comparing to
See all releases

Code changes from version 2.2.8 to 2.2.9

includes/global/shortcode.php CHANGED
@@ -806,8 +806,8 @@ class Soliloquy_Shortcode_Lite {
806
  return true;
807
  }
808
 
809
- // Return false if not a mobile device.
810
- return false;
811
 
812
  }
813
 
806
  return true;
807
  }
808
 
809
+ // Return wp_is_mobile for the final check.
810
+ return wp_is_mobile();
811
 
812
  }
813
 
readme.txt CHANGED
@@ -87,6 +87,9 @@ Soliloquy has many Addons that extend its default functionality to make it do in
87
 
88
  == Changelog ==
89
 
 
 
 
90
  = 2.2.8 =
91
  * Fix: Caption link color sometimes matched caption background color, making it difficult to see links in captions
92
 
87
 
88
  == Changelog ==
89
 
90
+ = 2.2.9 =
91
+ * Added: is_mobile() checking enhanced to also use wp_is_mobile() if other checks return false
92
+
93
  = 2.2.8 =
94
  * Fix: Caption link color sometimes matched caption background color, making it difficult to see links in captions
95
 
soliloquy-lite.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Soliloquy is best responsive WordPress slider plugin. This is the lite version.
6
  * Author: Thomas Griffin
7
  * Author URI: http://thomasgriffinmedia.com
8
- * Version: 2.2.8
9
  * Text Domain: soliloquy
10
  * Domain Path: languages
11
  *
@@ -54,7 +54,7 @@ class Soliloquy_Lite {
54
  *
55
  * @var string
56
  */
57
- public $version = '2.2.8';
58
 
59
  /**
60
  * The name of the plugin.
5
  * Description: Soliloquy is best responsive WordPress slider plugin. This is the lite version.
6
  * Author: Thomas Griffin
7
  * Author URI: http://thomasgriffinmedia.com
8
+ * Version: 2.2.9
9
  * Text Domain: soliloquy
10
  * Domain Path: languages
11
  *
54
  *
55
  * @var string
56
  */
57
+ public $version = '2.2.9';
58
 
59
  /**
60
  * The name of the plugin.