Kadence Blocks – Gutenberg Page Builder Toolkit - Version 2.2.10

Version Description

Release Date: February 25th, 2022 * Fix: issue with separator color.

Download this release

Release Info

Developer britner
Plugin Icon 128x128 Kadence Blocks – Gutenberg Page Builder Toolkit
Version 2.2.10
Comparing to
See all releases

Code changes from version 2.2.9 to 2.2.10

dist/class-kadence-blocks-frontend.php CHANGED
@@ -4452,8 +4452,8 @@ class Kadence_Blocks_Frontend {
4452
  if ( isset( $attr['dividerHeight'] ) && ! empty( $attr['dividerHeight'] ) ) {
4453
  $css->add_property( 'border-top-width', $attr['dividerHeight'] . 'px' );
4454
  }
4455
- if ( isset( $attr['dividerBorderColor'] ) && ! empty( $attr['dividerBorderColor'] ) ) {
4456
- $css->add_property( 'border-top-color', $css->render_color( $attr['dividerBorderColor'] ) );
4457
  }
4458
  $divider_width = ( isset( $attr['dividerWidth'] ) && ! empty( $attr['dividerWidth'] ) ? $attr['dividerWidth'] : '80' );
4459
  $divider_width_units = ( isset( $attr['dividerWidthUnits'] ) && ! empty( $attr['dividerWidthUnits'] ) ? $attr['dividerWidthUnits'] : '%' );
4452
  if ( isset( $attr['dividerHeight'] ) && ! empty( $attr['dividerHeight'] ) ) {
4453
  $css->add_property( 'border-top-width', $attr['dividerHeight'] . 'px' );
4454
  }
4455
+ if ( isset( $attr['dividerColor'] ) && ! empty( $attr['dividerColor'] ) ) {
4456
+ $css->add_property( 'border-top-color', $css->render_color( $attr['dividerColor'] ) );
4457
  }
4458
  $divider_width = ( isset( $attr['dividerWidth'] ) && ! empty( $attr['dividerWidth'] ) ? $attr['dividerWidth'] : '80' );
4459
  $divider_width_units = ( isset( $attr['dividerWidthUnits'] ) && ! empty( $attr['dividerWidthUnits'] ) ? $attr['dividerWidthUnits'] : '%' );
kadence-blocks.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Advanced Page Building Blocks for Gutenberg. Create custom column layouts, backgrounds, dual buttons, icons etc.
6
  * Author: Kadence WP
7
  * Author URI: https://www.kadencewp.com
8
- * Version: 2.2.9
9
  * Text Domain: kadence-blocks
10
  * License: GPL2+
11
  * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) {
20
 
21
  define( 'KADENCE_BLOCKS_PATH', realpath( plugin_dir_path( __FILE__ ) ) . DIRECTORY_SEPARATOR );
22
  define( 'KADENCE_BLOCKS_URL', plugin_dir_url( __FILE__ ) );
23
- define( 'KADENCE_BLOCKS_VERSION', '2.2.9' );
24
  /**
25
  * Add a check before redirecting
26
  */
@@ -57,4 +57,4 @@ add_action( 'plugins_loaded', 'kadence_blocks_init' );
57
  function kadence_blocks_lang() {
58
  load_plugin_textdomain( 'kadence-blocks', false, basename( dirname( __FILE__ ) ) . '/languages' );
59
  }
60
- add_action( 'init', 'kadence_blocks_lang' );
5
  * Description: Advanced Page Building Blocks for Gutenberg. Create custom column layouts, backgrounds, dual buttons, icons etc.
6
  * Author: Kadence WP
7
  * Author URI: https://www.kadencewp.com
8
+ * Version: 2.2.10
9
  * Text Domain: kadence-blocks
10
  * License: GPL2+
11
  * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
20
 
21
  define( 'KADENCE_BLOCKS_PATH', realpath( plugin_dir_path( __FILE__ ) ) . DIRECTORY_SEPARATOR );
22
  define( 'KADENCE_BLOCKS_URL', plugin_dir_url( __FILE__ ) );
23
+ define( 'KADENCE_BLOCKS_VERSION', '2.2.10' );
24
  /**
25
  * Add a check before redirecting
26
  */
57
  function kadence_blocks_lang() {
58
  load_plugin_textdomain( 'kadence-blocks', false, basename( dirname( __FILE__ ) ) . '/languages' );
59
  }
60
+ add_action( 'init', 'kadence_blocks_lang' );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: gutenberg, blocks, page builder, google fonts, dual buttons, svg icons, ed
4
  Donate link: https://www.kadencewp.com/about-us/
5
  Requires at least: 5.8
6
  Tested up to: 5.9
7
- Stable tag: 2.2.9
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -81,6 +81,10 @@ Install the plugin into the `/wp-content/plugins/` folder, and activate it.
81
  == Changelog ==
82
 
83
 
 
 
 
 
84
  = 2.2.9 =
85
  Release Date: February 24th, 2022
86
  * Fix: Prevent showing row column sizer when block not selected.
4
  Donate link: https://www.kadencewp.com/about-us/
5
  Requires at least: 5.8
6
  Tested up to: 5.9
7
+ Stable tag: 2.2.10
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
81
  == Changelog ==
82
 
83
 
84
+ = 2.2.10 =
85
+ Release Date: February 25th, 2022
86
+ * Fix: issue with separator color.
87
+
88
  = 2.2.9 =
89
  Release Date: February 24th, 2022
90
  * Fix: Prevent showing row column sizer when block not selected.