Customify – A Theme Customizer Booster - Version 2.0.2

Version Description

  • Fixed bug where no CSS was output for some settings with default value.
Download this release

Release Info

Developer pixelgrade
Plugin Icon Customify – A Theme Customizer Booster
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

Files changed (3) hide show
  1. class-pixcustomify.php +1 -1
  2. customify.php +2 -2
  3. readme.txt +4 -1
class-pixcustomify.php CHANGED
@@ -2259,7 +2259,7 @@ class PixCustomifyPlugin {
2259
  $setting_id = $this->opt_name . '[' . $option_id . ']';
2260
  }
2261
 
2262
- $return = get_option( $setting_id );
2263
  } else {
2264
  // Get the value stores in theme_mods.
2265
  $return = $this->get_value( $option_id, $alt_opt_name );
2259
  $setting_id = $this->opt_name . '[' . $option_id . ']';
2260
  }
2261
 
2262
+ $return = get_option( $setting_id, null );
2263
  } else {
2264
  // Get the value stores in theme_mods.
2265
  $return = $this->get_value( $option_id, $alt_opt_name );
customify.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Customify
4
  Plugin URI: https://wordpress.org/plugins/customify/
5
  Description: A Theme Customizer Booster
6
- Version: 2.0.1
7
  Author: Pixelgrade
8
  Author URI: https://pixelgrade.com
9
  Author Email: contact@pixelgrade.com
@@ -61,7 +61,7 @@ function PixCustomifyPlugin() {
61
  */
62
  require_once plugin_dir_path( __FILE__ ) . 'class-pixcustomify.php';
63
 
64
- $instance = PixCustomifyPlugin::instance( __FILE__, '2.0.1' );
65
 
66
  return $instance;
67
  }
3
  Plugin Name: Customify
4
  Plugin URI: https://wordpress.org/plugins/customify/
5
  Description: A Theme Customizer Booster
6
+ Version: 2.0.2
7
  Author: Pixelgrade
8
  Author URI: https://pixelgrade.com
9
  Author Email: contact@pixelgrade.com
61
  */
62
  require_once plugin_dir_path( __FILE__ ) . 'class-pixcustomify.php';
63
 
64
+ $instance = PixCustomifyPlugin::instance( __FILE__, '2.0.2' );
65
 
66
  return $instance;
67
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: pixelgrade, euthelup, babbardel, vlad.olaru, cristianfrumusanu, ra
3
  Tags: customizer, css, editor, live, preview, customizer
4
  Requires at least: 4.7.0
5
  Tested up to: 4.9.8
6
- Stable tag: 2.0.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -45,6 +45,9 @@ With [Customify](https://github.com/pixelgrade/customify), developers can easily
45
 
46
  == Changelog ==
47
 
 
 
 
48
  = 2.0.1 =
49
  * Minor fix for the color pickers.
50
 
3
  Tags: customizer, css, editor, live, preview, customizer
4
  Requires at least: 4.7.0
5
  Tested up to: 4.9.8
6
+ Stable tag: 2.0.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
45
 
46
  == Changelog ==
47
 
48
+ = 2.0.2 =
49
+ * Fixed bug where no CSS was output for some settings with default value.
50
+
51
  = 2.0.1 =
52
  * Minor fix for the color pickers.
53