Version Description
- 02.01.2019 =
- Fixed: et_divi_divider_style_choices() error on older Divi version.
Download this release
Release Info
Developer | divisupreme |
Plugin | Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder |
Version | 1.3.8 |
Comparing to | |
See all releases |
Code changes from version 1.3.7 to 1.3.8
- includes/SupremeModulesLoader.php +19 -0
- readme.txt +5 -2
- supreme-modules-for-divi.php +2 -2
includes/SupremeModulesLoader.php
CHANGED
@@ -8,6 +8,25 @@ function et_core_is_fb_enabled() {
|
|
8 |
return function_exists( 'et_fb_is_enabled' ) && et_fb_is_enabled();
|
9 |
}
|
10 |
endif;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
function dsm_setting_get_option( $option, $section, $default = '' ) {
|
13 |
|
8 |
return function_exists( 'et_fb_is_enabled' ) && et_fb_is_enabled();
|
9 |
}
|
10 |
endif;
|
11 |
+
if ( ! function_exists( 'et_divi_divider_style_choices' ) ) :
|
12 |
+
/**
|
13 |
+
* Returns divider style choices
|
14 |
+
* @return array
|
15 |
+
*/
|
16 |
+
function et_divi_divider_style_choices() {
|
17 |
+
return apply_filters( 'et_divi_divider_style_choices', array(
|
18 |
+
'solid' => esc_html__( 'Solid', 'Divi' ),
|
19 |
+
'dotted' => esc_html__( 'Dotted', 'Divi' ),
|
20 |
+
'dashed' => esc_html__( 'Dashed', 'Divi' ),
|
21 |
+
'double' => esc_html__( 'Double', 'Divi' ),
|
22 |
+
'groove' => esc_html__( 'Groove', 'Divi' ),
|
23 |
+
'ridge' => esc_html__( 'Ridge', 'Divi' ),
|
24 |
+
'inset' => esc_html__( 'Inset', 'Divi' ),
|
25 |
+
'outset' => esc_html__( 'Outset', 'Divi' ),
|
26 |
+
) );
|
27 |
+
}
|
28 |
+
endif;
|
29 |
+
/*End of Temporary fix*/
|
30 |
|
31 |
function dsm_setting_get_option( $option, $section, $default = '' ) {
|
32 |
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: divisupreme, kenng87
|
|
3 |
Tags: Divi, Divi Module, Divi Custom Module, divi theme, divi builder, Divi Gradient Text, Divi Typing Effect, Divi 3D Image, Divi Image, Divi Text Divider, facebook feed, facebook comments
|
4 |
Donate link: https://suprememodules.com/
|
5 |
Requires at least: 4.5
|
6 |
-
Tested up to: 5.0
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 1.3.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -87,6 +87,9 @@ Divi Builder >= version 2.1
|
|
87 |
PHP version >= 5.6
|
88 |
|
89 |
== Changelog ==
|
|
|
|
|
|
|
90 |
= 1.3.7 - 30.12.2018 =
|
91 |
* Added: Divi Supreme Price List Module.
|
92 |
|
3 |
Tags: Divi, Divi Module, Divi Custom Module, divi theme, divi builder, Divi Gradient Text, Divi Typing Effect, Divi 3D Image, Divi Image, Divi Text Divider, facebook feed, facebook comments
|
4 |
Donate link: https://suprememodules.com/
|
5 |
Requires at least: 4.5
|
6 |
+
Tested up to: 5.0.2
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 1.3.8
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
87 |
PHP version >= 5.6
|
88 |
|
89 |
== Changelog ==
|
90 |
+
= 1.3.8 - 02.01.2019 =
|
91 |
+
* Fixed: et_divi_divider_style_choices() error on older Divi version.
|
92 |
+
|
93 |
= 1.3.7 - 30.12.2018 =
|
94 |
* Added: Divi Supreme Price List Module.
|
95 |
|
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.3.
|
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.3.
|
40 |
|
41 |
if ( ! function_exists( 'dsm_initialize_extension' ) ):
|
42 |
/**
|
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.3.8
|
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.3.8' );
|
40 |
|
41 |
if ( ! function_exists( 'dsm_initialize_extension' ) ):
|
42 |
/**
|