Customify – A Theme Customizer Booster - Version 2.1.2

Version Description

  • Avoid short array syntax to ensure PHP 5.2 compatibility
Download this release

Release Info

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

Code changes from version 2.1.1 to 2.1.2

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.1.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.1.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.1.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.1.2' );
65
 
66
  return $instance;
67
  }
features/customizer/controls/class-Pix_Customize_SM_palette_filter_control.php CHANGED
@@ -34,7 +34,7 @@ class Pix_Customize_SM_palette_filter_Control extends Pix_Customize_Control {
34
  </div>
35
 
36
  <?php
37
- $master_color_controls_ids = [
38
  "sm_color_primary",
39
  "sm_color_secondary",
40
  "sm_color_tertiary",
@@ -44,7 +44,7 @@ class Pix_Customize_SM_palette_filter_Control extends Pix_Customize_Control {
44
  "sm_light_primary",
45
  "sm_light_secondary",
46
  "sm_light_tertiary"
47
- ];
48
 
49
  $current_palette = '<div class="colors">';
50
  foreach ( $master_color_controls_ids as $setting_id ) {
34
  </div>
35
 
36
  <?php
37
+ $master_color_controls_ids = array(
38
  "sm_color_primary",
39
  "sm_color_secondary",
40
  "sm_color_tertiary",
44
  "sm_light_primary",
45
  "sm_light_secondary",
46
  "sm_light_tertiary"
47
+ );
48
 
49
  $current_palette = '<div class="colors">';
50
  foreach ( $master_color_controls_ids as $setting_id ) {
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.1.1
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.1.1 =
49
  * Hide the Fonts section for themes that do not declare support for Font Palettes
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.1.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.1.2 =
49
+ * Avoid short array syntax to ensure PHP 5.2 compatibility
50
+
51
  = 2.1.1 =
52
  * Hide the Fonts section for themes that do not declare support for Font Palettes
53