Version Description
- 11.10.2018 =
- Enhanced: Contact Form 7 Module where dropdown list is not rendering on first time use. Inserted '-- Select Contact Form 7 --' on the first select list to prevent this.
Download this release
Release Info
Developer | divisupreme |
Plugin | Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder |
Version | 1.1.8 |
Comparing to | |
See all releases |
Code changes from version 1.1.7 to 1.1.8
includes/modules/ContactForm7/ContactForm7.php
CHANGED
@@ -555,7 +555,11 @@ function dsm_get_contact_form_7() {
|
|
555 |
'post_type' => 'wpcf7_contact_form',
|
556 |
'posts_per_page' => - 1
|
557 |
);
|
558 |
-
|
|
|
|
|
|
|
|
|
559 |
if ( $categories = get_posts($args) ) {
|
560 |
foreach($categories as $category) {
|
561 |
(int)$dsm_cf7_library_list[$category->ID] = $category->post_title;
|
555 |
'post_type' => 'wpcf7_contact_form',
|
556 |
'posts_per_page' => - 1
|
557 |
);
|
558 |
+
|
559 |
+
$dsm_cf7_library_list = [
|
560 |
+
'0' => esc_html__( '-- Select Contact Form 7 --', 'dsm-supreme-modules-for-divi' ),
|
561 |
+
];
|
562 |
+
|
563 |
if ( $categories = get_posts($args) ) {
|
564 |
foreach($categories as $category) {
|
565 |
(int)$dsm_cf7_library_list[$category->ID] = $category->post_title;
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://suprememodules.com/
|
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.1.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -79,6 +79,9 @@ You must have Divi theme, Extra Theme or the Divi Builder installed in order for
|
|
79 |
YES! At least Divi 3.1 onwards where they introduced the Divi Developer API.
|
80 |
|
81 |
== Changelog ==
|
|
|
|
|
|
|
82 |
= 1.1.7 - 11.10.2018 =
|
83 |
* Added: Supreme Text Badges Module.
|
84 |
* Added: Embed Footer on Visual Builder in Footer Template.
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.1.8
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
79 |
YES! At least Divi 3.1 onwards where they introduced the Divi Developer API.
|
80 |
|
81 |
== Changelog ==
|
82 |
+
= 1.1.8 - 11.10.2018 =
|
83 |
+
* Enhanced: Contact Form 7 Module where dropdown list is not rendering on first time use. Inserted '-- Select Contact Form 7 --' on the first select list to prevent this.
|
84 |
+
|
85 |
= 1.1.7 - 11.10.2018 =
|
86 |
* Added: Supreme Text Badges Module.
|
87 |
* Added: Embed Footer on Visual Builder in Footer Template.
|
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.1.
|
7 |
Author: Supreme Modules
|
8 |
Author URI: https://suprememodules.com/about-us/
|
9 |
License: GPL2
|
@@ -24,7 +24,7 @@ GNU General Public License for more details.
|
|
24 |
You should have received a copy of the GNU General Public License
|
25 |
along with Supreme Modules. If not, see https://www.gnu.org/licenses/gpl-2.0.html.
|
26 |
*/
|
27 |
-
define( 'DSM_VERSION', '1.1.
|
28 |
|
29 |
if ( ! function_exists( 'dsm_initialize_extension' ) ):
|
30 |
/**
|
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.1.8
|
7 |
Author: Supreme Modules
|
8 |
Author URI: https://suprememodules.com/about-us/
|
9 |
License: GPL2
|
24 |
You should have received a copy of the GNU General Public License
|
25 |
along with Supreme Modules. If not, see https://www.gnu.org/licenses/gpl-2.0.html.
|
26 |
*/
|
27 |
+
define( 'DSM_VERSION', '1.1.8' );
|
28 |
|
29 |
if ( ! function_exists( 'dsm_initialize_extension' ) ):
|
30 |
/**
|