Version Description
- 02.09.2019 =
- Fixed: Caldera Forms undefined props.
Download this release
Release Info
Developer | divisupreme |
Plugin | Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder |
Version | 1.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.7.3 to 1.7.4
includes/SupremeModulesForDivi.php
CHANGED
@@ -27,7 +27,7 @@ class DSM_SupremeModulesForDivi extends DiviExtension {
|
|
27 |
*
|
28 |
* @var string
|
29 |
*/
|
30 |
-
public $version = '1.7.
|
31 |
|
32 |
/**
|
33 |
* DSM_SupremeModulesForDivi constructor.
|
27 |
*
|
28 |
* @var string
|
29 |
*/
|
30 |
+
public $version = '1.7.4';
|
31 |
|
32 |
/**
|
33 |
* DSM_SupremeModulesForDivi constructor.
|
includes/modules/CalderaForms/CalderaForms.php
CHANGED
@@ -674,13 +674,14 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
674 |
$checkbox_checked_color = $this->props['checkbox_checked_color'];
|
675 |
$checkbox_checked_background_color = $this->props['checkbox_checked_background_color'];
|
676 |
$checkbox_background_color = $this->props['checkbox_background_color'];
|
677 |
-
|
|
|
678 |
if ( '' !== $input_textarea_select_text_color ) {
|
679 |
ET_Builder_Element::set_style( $render_slug, array(
|
680 |
'selector' => '%%order_class%% .dsm-caldera-forms-select:after',
|
681 |
'declaration' => sprintf(
|
682 |
'border-color: %1$s transparent transparent;',
|
683 |
-
esc_html( $
|
684 |
),
|
685 |
) );
|
686 |
}
|
674 |
$checkbox_checked_color = $this->props['checkbox_checked_color'];
|
675 |
$checkbox_checked_background_color = $this->props['checkbox_checked_background_color'];
|
676 |
$checkbox_background_color = $this->props['checkbox_background_color'];
|
677 |
+
$input_textarea_select_text_color = $this->props['input_textarea_select_text_color'];
|
678 |
+
|
679 |
if ( '' !== $input_textarea_select_text_color ) {
|
680 |
ET_Builder_Element::set_style( $render_slug, array(
|
681 |
'selector' => '%%order_class%% .dsm-caldera-forms-select:after',
|
682 |
'declaration' => sprintf(
|
683 |
'border-color: %1$s transparent transparent;',
|
684 |
+
esc_html( $input_textarea_select_text_color )
|
685 |
),
|
686 |
) );
|
687 |
}
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://suprememodules.com/
|
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.2.2
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.7.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -99,6 +99,9 @@ Your existing modules/content will work with pro version. So you won't lose any
|
|
99 |
|
100 |
|
101 |
== Changelog ==
|
|
|
|
|
|
|
102 |
= 1.7.3 - 02.09.2019 =
|
103 |
* Fixed: Caldera Forms select background color not rendering.
|
104 |
* Enhanced: Divi template output.
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.2.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.7.4
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
99 |
|
100 |
|
101 |
== Changelog ==
|
102 |
+
= 1.7.4 - 02.09.2019 =
|
103 |
+
* Fixed: Caldera Forms undefined props.
|
104 |
+
|
105 |
= 1.7.3 - 02.09.2019 =
|
106 |
* Fixed: Caldera Forms select background color not rendering.
|
107 |
* Enhanced: Divi template output.
|
supreme-modules-for-divi.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Divi Supreme Modules
|
4 |
Plugin URI: https://suprememodules.com
|
5 |
Description: Supreme Modules enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
|
6 |
-
Version: 1.7.
|
7 |
Author: Supreme Modules
|
8 |
Author URI: https://suprememodules.com/about-us/
|
9 |
License: GPL2
|
@@ -27,7 +27,7 @@ along with Supreme Modules. If not, see https://www.gnu.org/licenses/gpl-2.0.htm
|
|
27 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
28 |
|
29 |
if ( ! defined('DSM_VERSION') ) {
|
30 |
-
define( 'DSM_VERSION', '1.7.
|
31 |
}
|
32 |
if ( ! defined('DSM_SHORTCODE') ) {
|
33 |
define( 'DSM_SHORTCODE', 'divi_shortcode' );
|
3 |
Plugin Name: Divi Supreme Modules
|
4 |
Plugin URI: https://suprememodules.com
|
5 |
Description: Supreme Modules enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
|
6 |
+
Version: 1.7.4
|
7 |
Author: Supreme Modules
|
8 |
Author URI: https://suprememodules.com/about-us/
|
9 |
License: GPL2
|
27 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
28 |
|
29 |
if ( ! defined('DSM_VERSION') ) {
|
30 |
+
define( 'DSM_VERSION', '1.7.4' );
|
31 |
}
|
32 |
if ( ! defined('DSM_SHORTCODE') ) {
|
33 |
define( 'DSM_SHORTCODE', 'divi_shortcode' );
|