Version Description
11.09.2020 = * Fixed: Button padding issue in Divi Flipbox Module.
Download this release
Release Info
Developer | divisupreme |
Plugin | Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder |
Version | 2.2.9 |
Comparing to | |
See all releases |
Code changes from version 2.2.8 to 2.2.9
includes/modules/FlipBoxPerkChild/FlipBoxPerkChild.php
CHANGED
@@ -154,19 +154,26 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
154 |
),
|
155 |
),
|
156 |
),
|
157 |
-
'button'
|
158 |
'button' => array(
|
159 |
-
'label'
|
160 |
-
'css'
|
161 |
-
'
|
162 |
-
'
|
|
|
163 |
),
|
164 |
-
'use_alignment'
|
165 |
-
'box_shadow'
|
166 |
'css' => array(
|
167 |
'main' => '%%order_class%% .et_pb_button',
|
168 |
),
|
169 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
),
|
171 |
),
|
172 |
'filters' => array(
|
154 |
),
|
155 |
),
|
156 |
),
|
157 |
+
'button' => array(
|
158 |
'button' => array(
|
159 |
+
'label' => esc_html__( 'Button', 'dsm-supreme-modules-for-divi' ),
|
160 |
+
'css' => array(
|
161 |
+
'main' => "{$this->main_css_element} .et_pb_button",
|
162 |
+
'limited_main' => "{$this->main_css_element} .et_pb_button",
|
163 |
+
'alignment' => "{$this->main_css_element} .et_pb_button_wrapper",
|
164 |
),
|
165 |
+
'use_alignment' => true,
|
166 |
+
'box_shadow' => array(
|
167 |
'css' => array(
|
168 |
'main' => '%%order_class%% .et_pb_button',
|
169 |
),
|
170 |
),
|
171 |
+
'margin_padding' => array(
|
172 |
+
'css' => array(
|
173 |
+
'main' => "{$this->main_css_element} .et_pb_button_wrapper .et_pb_button",
|
174 |
+
'important' => 'all',
|
175 |
+
),
|
176 |
+
),
|
177 |
),
|
178 |
),
|
179 |
'filters' => array(
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: divisupreme, kenng87
|
|
3 |
Tags: Divi, Divi Module, Divi Page Builder, divi theme, divi builder, Divi Extensions
|
4 |
Donate link: https://suprememodules.com/
|
5 |
Requires at least: 4.5
|
6 |
-
Tested up to: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 2.2.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -111,6 +111,9 @@ This is a common question that we get asked here every now and then which is why
|
|
111 |
|
112 |
|
113 |
== Changelog ==
|
|
|
|
|
|
|
114 |
= 2.2.8 – 07.07.2020 =
|
115 |
* Enhanced: Format and follow WordPress Coding Standards for all PHP files in /includes/.
|
116 |
* Enhanced: PHP error shows up when Divi Theme, Extra Theme or Divi builder plugin is not activated.
|
3 |
Tags: Divi, Divi Module, Divi Page Builder, divi theme, divi builder, Divi Extensions
|
4 |
Donate link: https://suprememodules.com/
|
5 |
Requires at least: 4.5
|
6 |
+
Tested up to: 5.5.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 2.2.9
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
111 |
|
112 |
|
113 |
== Changelog ==
|
114 |
+
= 2.2.9 – 11.09.2020 =
|
115 |
+
* Fixed: Button padding issue in Divi Flipbox Module.
|
116 |
+
|
117 |
= 2.2.8 – 07.07.2020 =
|
118 |
* Enhanced: Format and follow WordPress Coding Standards for all PHP files in /includes/.
|
119 |
* Enhanced: PHP error shows up when Divi Theme, Extra Theme or Divi builder plugin is not activated.
|
supreme-modules-for-divi.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Supreme Modules Lite - Divi Theme, Extra Theme and Divi Builder
|
4 |
* Plugin URI: https://suprememodules.com
|
5 |
* Description: Divi Supreme enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
|
6 |
-
* Version: 2.2.
|
7 |
* Author: Supreme Modules
|
8 |
* Author URI: https://suprememodules.com/about-us/
|
9 |
* License: GPL2
|
@@ -34,7 +34,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
34 |
}
|
35 |
|
36 |
if ( ! defined( 'DSM_VERSION' ) ) {
|
37 |
-
define( 'DSM_VERSION', '2.2.
|
38 |
}
|
39 |
if ( ! defined( 'DSM_SHORTCODE' ) ) {
|
40 |
define( 'DSM_SHORTCODE', 'divi_shortcode' );
|
3 |
* Plugin Name: Supreme Modules Lite - Divi Theme, Extra Theme and Divi Builder
|
4 |
* Plugin URI: https://suprememodules.com
|
5 |
* Description: Divi Supreme enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
|
6 |
+
* Version: 2.2.9
|
7 |
* Author: Supreme Modules
|
8 |
* Author URI: https://suprememodules.com/about-us/
|
9 |
* License: GPL2
|
34 |
}
|
35 |
|
36 |
if ( ! defined( 'DSM_VERSION' ) ) {
|
37 |
+
define( 'DSM_VERSION', '2.2.9' );
|
38 |
}
|
39 |
if ( ! defined( 'DSM_SHORTCODE' ) ) {
|
40 |
define( 'DSM_SHORTCODE', 'divi_shortcode' );
|