Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder - Version 1.4.0

Version Description

  • 31.01.2019 =
  • Fixed: Button #2 icon not showing up on frontend for Supreme Module.
  • Fixed: Title font-size and header tag not rendering on Visual Builder for Menu module.
Download this release

Release Info

Developer divisupreme
Plugin Icon 128x128 Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder
Version 1.4.0
Comparing to
See all releases

Code changes from version 1.3.9 to 1.4.0

includes/modules/Buttons/Buttons.php CHANGED
@@ -472,7 +472,7 @@ class DSM_Button extends ET_Builder_Module {
472
  ( 'on' === $button_two_url_new_window ? ' target="_blank"' : '' ),
473
  '' !== $custom_icon_2 && 'on' === $button_custom_2 ? sprintf(
474
  ' data-icon="%1$s"',
475
- esc_attr( et_pb_process_font_icon( $custom_icon_1 ) )
476
  ) : '',
477
  '' !== $custom_icon_2 && 'on' === $button_custom_2 ? ' et_pb_custom_button_icon' : '',
478
  $this->get_rel_attributes($button_two_rel),
472
  ( 'on' === $button_two_url_new_window ? ' target="_blank"' : '' ),
473
  '' !== $custom_icon_2 && 'on' === $button_custom_2 ? sprintf(
474
  ' data-icon="%1$s"',
475
+ esc_attr( et_pb_process_font_icon( $custom_icon_2 ) )
476
  ) : '',
477
  '' !== $custom_icon_2 && 'on' === $button_custom_2 ? ' et_pb_custom_button_icon' : '',
478
  $this->get_rel_attributes($button_two_rel),
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://suprememodules.com/
5
  Requires at least: 4.5
6
  Tested up to: 5.0.3
7
  Requires PHP: 5.6
8
- Stable tag: 1.3.9
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -87,6 +87,10 @@ Divi Builder >= version 2.1
87
  PHP version >= 5.6
88
 
89
  == Changelog ==
 
 
 
 
90
  = 1.3.9 - 14.01.2019 =
91
  * Fixed: Flipbox module responsive image width not rendering on Visual Builder.
92
  * Enhanced: Remove extra div on Flipbox module.
5
  Requires at least: 4.5
6
  Tested up to: 5.0.3
7
  Requires PHP: 5.6
8
+ Stable tag: 1.4.0
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.4.0 - 31.01.2019 =
91
+ * Fixed: Button #2 icon not showing up on frontend for Supreme Module.
92
+ * Fixed: Title font-size and header tag not rendering on Visual Builder for Menu module.
93
+
94
  = 1.3.9 - 14.01.2019 =
95
  * Fixed: Flipbox module responsive image width not rendering on Visual Builder.
96
  * Enhanced: Remove extra div on Flipbox 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.3.9
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.9' );
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.4.0
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.4.0' );
40
 
41
  if ( ! function_exists( 'dsm_initialize_extension' ) ):
42
  /**