Version Description
- 08.05.2019 =
- Fixed: Contact Form 7 Button not having et_pb_button css class.
Download this release
Release Info
Developer | divisupreme |
Plugin | Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder |
Version | 1.5.2 |
Comparing to | |
See all releases |
Code changes from version 1.5.1 to 1.5.2
- includes/SupremeModulesLoader.php +3 -1
- readme.txt +4 -1
- supreme-modules-for-divi.php +2 -2
includes/SupremeModulesLoader.php
CHANGED
@@ -215,7 +215,9 @@ function dsm_load_cf7_library() {
|
|
215 |
add_action( 'wp_ajax_nopriv_dsm_load_cf7_library', 'dsm_load_cf7_library' );
|
216 |
add_action( 'wp_ajax_dsm_load_cf7_library', 'dsm_load_cf7_library' );
|
217 |
|
218 |
-
|
|
|
|
|
219 |
add_action( 'wpcf7_init', 'dsm_wpcf7_add_form_tag_submit' );
|
220 |
if ( !function_exists('dsm_wpcf7_add_form_tag_submit') ) {
|
221 |
function dsm_wpcf7_add_form_tag_submit() {
|
215 |
add_action( 'wp_ajax_nopriv_dsm_load_cf7_library', 'dsm_load_cf7_library' );
|
216 |
add_action( 'wp_ajax_dsm_load_cf7_library', 'dsm_load_cf7_library' );
|
217 |
|
218 |
+
/* Removing default submit tag */
|
219 |
+
remove_action( 'wpcf7_init', 'wpcf7_add_form_tag_submit' );
|
220 |
+
//remove_action( 'wpcf7_init', 'wpcf7_add_shortcode_submit', 20 );
|
221 |
add_action( 'wpcf7_init', 'dsm_wpcf7_add_form_tag_submit' );
|
222 |
if ( !function_exists('dsm_wpcf7_add_form_tag_submit') ) {
|
223 |
function dsm_wpcf7_add_form_tag_submit() {
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://suprememodules.com/
|
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.2
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.5.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -89,6 +89,9 @@ Divi Builder >= version 2.1
|
|
89 |
PHP version >= 5.6
|
90 |
|
91 |
== Changelog ==
|
|
|
|
|
|
|
92 |
= 1.5.1 - 08.05.2019 =
|
93 |
* Added: Label Asterisk color to Divi Supreme Caldera Forms Module.
|
94 |
* Improved: Inline Checkbox and Radio for Divi Supreme Caldera Forms Module.
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.5.2
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
89 |
PHP version >= 5.6
|
90 |
|
91 |
== Changelog ==
|
92 |
+
= 1.5.2 - 08.05.2019 =
|
93 |
+
* Fixed: Contact Form 7 Button not having et_pb_button css class.
|
94 |
+
|
95 |
= 1.5.1 - 08.05.2019 =
|
96 |
* Added: Label Asterisk color to Divi Supreme Caldera Forms Module.
|
97 |
* Improved: Inline Checkbox and Radio for Divi Supreme Caldera Forms Module.
|
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.5.
|
7 |
Author: Supreme Modules
|
8 |
Author URI: https://suprememodules.com/about-us/
|
9 |
License: GPL2
|
@@ -36,7 +36,7 @@ if ( version_compare(PHP_VERSION, '5.6', '<') ) {
|
|
36 |
add_action( 'admin_notices', 'dsm_admin_notice__php_version_error' );
|
37 |
return;
|
38 |
} else {
|
39 |
-
define( 'DSM_VERSION', '1.5.
|
40 |
define( 'DSM_SHORTCODE', 'divi_shortcode' );
|
41 |
|
42 |
if ( ! function_exists( 'dsm_initialize_extension' ) ):
|
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.5.2
|
7 |
Author: Supreme Modules
|
8 |
Author URI: https://suprememodules.com/about-us/
|
9 |
License: GPL2
|
36 |
add_action( 'admin_notices', 'dsm_admin_notice__php_version_error' );
|
37 |
return;
|
38 |
} else {
|
39 |
+
define( 'DSM_VERSION', '1.5.2' );
|
40 |
define( 'DSM_SHORTCODE', 'divi_shortcode' );
|
41 |
|
42 |
if ( ! function_exists( 'dsm_initialize_extension' ) ):
|