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

Version Description

  • Fix: Force slider ID on save, to ensure compat with WPML and duplication plugins
Download this release

Release Info

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

Code changes from version 2.3.6 to 2.3.7

includes/admin/metaboxes.php CHANGED
@@ -862,10 +862,9 @@ class Soliloquy_Metaboxes_Lite {
862
  $settings = array();
863
  }
864
 
865
- // If the ID of the slider is not set or is lost, replace it now.
866
- if ( empty( $settings['id'] ) || ! $settings['id'] ) {
867
- $settings['id'] = $post_id;
868
- }
869
 
870
  // Save the config settings.
871
  $settings['config']['type'] = isset( $_POST['_soliloquy']['type'] ) ? $_POST['_soliloquy']['type'] : $this->get_config_default( 'type' );
862
  $settings = array();
863
  }
864
 
865
+ // Force slider ID to match Post ID. This is deliberate; if a slider is duplicated (either using a duplication)
866
+ // plugin or WPML, the ID remains as the original slider ID, which breaks things for translations etc.
867
+ $settings['id'] = $post_id;
 
868
 
869
  // Save the config settings.
870
  $settings['config']['type'] = isset( $_POST['_soliloquy']['type'] ) ? $_POST['_soliloquy']['type'] : $this->get_config_default( 'type' );
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: griffinjt
3
  Tags: wordpress slider, slider, wordpress slider plugin, slider plugin, responsive, responsive slider, image slider, image slider plugin, responsive slider plugin, responsive image slider, responsive image slider plugin, custom post types, slideshow, responsive slideshow, slideshow plugin, responsive slideshow plugin, rotator, image rotator, responsive rotator, jquery slider, javascript slider, jquery rotator, javascript rotator, picture slider, photo slider, photo rotator, shortcode, template tag, wordpress slideshow, photo slider, wordpress responsive slider, wordpress picture slider, responsive picture slider, wordpress image slider, wordpress gallery, image gallery, photo gallery, wordpress photo gallery, wordpress picture gallery, wordpress picture slider, wp slider, best wordpress slider, best slider, best slider wordpress, best responsive slider, best responsive wordpress slider plugin
4
  Requires at least: 3.5.1
5
- Tested up to: 4.2.2
6
  Stable tag: trunk
7
  License: GNU General Public License v2.0 or later
8
 
@@ -87,6 +87,9 @@ Soliloquy has many Addons that extend its default functionality to make it do in
87
 
88
  == Changelog ==
89
 
 
 
 
90
  = 2.3.6 =
91
  * Fix: Sorting slides in a slider and not clicking Update would result in loss of slider configuration
92
 
2
  Contributors: griffinjt
3
  Tags: wordpress slider, slider, wordpress slider plugin, slider plugin, responsive, responsive slider, image slider, image slider plugin, responsive slider plugin, responsive image slider, responsive image slider plugin, custom post types, slideshow, responsive slideshow, slideshow plugin, responsive slideshow plugin, rotator, image rotator, responsive rotator, jquery slider, javascript slider, jquery rotator, javascript rotator, picture slider, photo slider, photo rotator, shortcode, template tag, wordpress slideshow, photo slider, wordpress responsive slider, wordpress picture slider, responsive picture slider, wordpress image slider, wordpress gallery, image gallery, photo gallery, wordpress photo gallery, wordpress picture gallery, wordpress picture slider, wp slider, best wordpress slider, best slider, best slider wordpress, best responsive slider, best responsive wordpress slider plugin
4
  Requires at least: 3.5.1
5
+ Tested up to: 4.3
6
  Stable tag: trunk
7
  License: GNU General Public License v2.0 or later
8
 
87
 
88
  == Changelog ==
89
 
90
+ = 2.3.7 =
91
+ * Fix: Force slider ID on save, to ensure compat with WPML and duplication plugins
92
+
93
  = 2.3.6 =
94
  * Fix: Sorting slides in a slider and not clicking Update would result in loss of slider configuration
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.3.6
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.3.6';
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.3.7
9
  * Text Domain: soliloquy
10
  * Domain Path: languages
11
  *
54
  *
55
  * @var string
56
  */
57
+ public $version = '2.3.7';
58
 
59
  /**
60
  * The name of the plugin.