Version Description
Release Date: May 4th, 2021 * Fix: Possible issue with info box rendering.
Download this release
Release Info
Developer | britner |
Plugin | Kadence Blocks – Gutenberg Page Builder Toolkit |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.0.1 to 2.0.2
- dist/class-kadence-blocks-frontend.php +1 -1
- kadence-blocks.php +2 -2
- readme.txt +5 -1
dist/class-kadence-blocks-frontend.php
CHANGED
@@ -3383,7 +3383,7 @@ class Kadence_Blocks_Frontend {
|
|
3383 |
if ( isset( $attr['textMinHeight'][1] ) && is_numeric( $attr['textMinHeight'][1] ) ) {
|
3384 |
$css->start_media_query( $media_query['tablet'] );
|
3385 |
$css->set_selector( '#kt-info-box' . $unique_id . ' .kt-blocks-info-box-text' );
|
3386 |
-
|
3387 |
$css->stop_media_query();
|
3388 |
}
|
3389 |
if ( isset( $attr['textMinHeight'][2] ) && is_numeric( $attr['textMinHeight'][2] ) ) {
|
3383 |
if ( isset( $attr['textMinHeight'][1] ) && is_numeric( $attr['textMinHeight'][1] ) ) {
|
3384 |
$css->start_media_query( $media_query['tablet'] );
|
3385 |
$css->set_selector( '#kt-info-box' . $unique_id . ' .kt-blocks-info-box-text' );
|
3386 |
+
$css->add_property( 'min-height', $attr['textMinHeight'][1] . 'px' );
|
3387 |
$css->stop_media_query();
|
3388 |
}
|
3389 |
if ( isset( $attr['textMinHeight'][2] ) && is_numeric( $attr['textMinHeight'][2] ) ) {
|
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.0.
|
9 |
* Text Domain: kadence-blocks
|
10 |
* License: GPL2+
|
11 |
* License URI: http://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.0.
|
24 |
|
25 |
/**
|
26 |
* Add a check before redirecting
|
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.0.2
|
9 |
* Text Domain: kadence-blocks
|
10 |
* License: GPL2+
|
11 |
* License URI: http://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.0.2' );
|
24 |
|
25 |
/**
|
26 |
* Add a check before redirecting
|
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.5
|
6 |
Tested up to: 5.7.1
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -88,6 +88,10 @@ Install the plugin into the `/wp-content/plugins/` folder, and activate it.
|
|
88 |
== Changelog ==
|
89 |
|
90 |
|
|
|
|
|
|
|
|
|
91 |
= 2.0.1 =
|
92 |
Release Date: May 3rd, 2021
|
93 |
* Fix: Possible issue with info box rendering.
|
4 |
Donate link: https://www.kadencewp.com/about-us/
|
5 |
Requires at least: 5.5
|
6 |
Tested up to: 5.7.1
|
7 |
+
Stable tag: 2.0.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
88 |
== Changelog ==
|
89 |
|
90 |
|
91 |
+
= 2.0.2 =
|
92 |
+
Release Date: May 4th, 2021
|
93 |
+
* Fix: Possible issue with info box rendering.
|
94 |
+
|
95 |
= 2.0.1 =
|
96 |
Release Date: May 3rd, 2021
|
97 |
* Fix: Possible issue with info box rendering.
|