Version Description
- 12.11.2018 =
- Fixed: Footer Template CSS Classes Option
Download this release
Release Info
Developer | divisupreme |
Plugin | Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder |
Version | 1.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.9 to 1.3
- includes/SupremeModulesLoader.php +1 -2
- readme.txt +10 -2
- supreme-modules-for-divi.php +2 -2
includes/SupremeModulesLoader.php
CHANGED
@@ -567,8 +567,7 @@ if ( dsm_setting_get_option( 'dsm_use_header_footer', 'dsm_general' ) == 'on' )
|
|
567 |
$footer_template_css = get_post_custom($footer_template_ID);
|
568 |
|
569 |
if ( $footer_template_css['dsm-css-classes-meta-box-options'][0] != '' ) {
|
570 |
-
|
571 |
-
$footer_template_css_output = do_shortcode("get_post_meta( $footer_css_template->post->ID, 'dsm-css-classes-meta-box-options', true )");
|
572 |
} else {
|
573 |
$footer_template_css_output = '';
|
574 |
}
|
567 |
$footer_template_css = get_post_custom($footer_template_ID);
|
568 |
|
569 |
if ( $footer_template_css['dsm-css-classes-meta-box-options'][0] != '' ) {
|
570 |
+
$footer_template_css_output = get_post_meta( $footer_css_template->post->ID, 'dsm-css-classes-meta-box-options', true );
|
|
|
571 |
} else {
|
572 |
$footer_template_css_output = '';
|
573 |
}
|
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.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -46,7 +46,7 @@ Divi is a great tool for building website, but without proper addons it might ta
|
|
46 |
We support Divi's mission through the development of Divi custom modules that focus on beauty, subtle animations and visitor engagement. Whether you are a developer or a designer. Our goal is to give you the perfect tool that is build for Divi professionals.
|
47 |
|
48 |
= Documentation and Support =
|
49 |
-
- For more information
|
50 |
|
51 |
== Installation ==
|
52 |
|
@@ -80,7 +80,15 @@ You must have Divi theme, Extra Theme or the Divi Builder installed in order for
|
|
80 |
|
81 |
YES! At least Divi 3.1 onwards where they introduced the Divi Developer API.
|
82 |
|
|
|
|
|
|
|
|
|
|
|
83 |
== Changelog ==
|
|
|
|
|
|
|
84 |
= 1.2.9 - 12.11.2018 =
|
85 |
* Replaced: Supreme Button Module css classes on frontend.
|
86 |
* Fixed: Supreme Facebook Feed and Supreme Facebook Comments alignment on Visual Builder and will use a temporary APP ID on first render.
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9
|
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 |
|
46 |
We support Divi's mission through the development of Divi custom modules that focus on beauty, subtle animations and visitor engagement. Whether you are a developer or a designer. Our goal is to give you the perfect tool that is build for Divi professionals.
|
47 |
|
48 |
= Documentation and Support =
|
49 |
+
- For more information, check out the documentation at [Divi Supreme](https://docs.divisupreme.com/).
|
50 |
|
51 |
== Installation ==
|
52 |
|
80 |
|
81 |
YES! At least Divi 3.1 onwards where they introduced the Divi Developer API.
|
82 |
|
83 |
+
Divi Theme >= version 3.1
|
84 |
+
Extra Theme >= version 2.1
|
85 |
+
Divi Builder >= version 2.1
|
86 |
+
PHP version >= 5.6
|
87 |
+
|
88 |
== Changelog ==
|
89 |
+
= 1.3 - 12.11.2018 =
|
90 |
+
* Fixed: Footer Template CSS Classes Option
|
91 |
+
|
92 |
= 1.2.9 - 12.11.2018 =
|
93 |
* Replaced: Supreme Button Module css classes on frontend.
|
94 |
* Fixed: Supreme Facebook Feed and Supreme Facebook Comments alignment on Visual Builder and will use a temporary APP ID on first render.
|
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 |
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.
|
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
|
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' );
|
40 |
|
41 |
if ( ! function_exists( 'dsm_initialize_extension' ) ):
|
42 |
/**
|