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

Version Description

  • 7.12.2018 =
  • Fixed: Supreme Image Module not showing up on frontend when using together with animation.
Download this release

Release Info

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

Code changes from version 1.3.4 to 1.3.5

includes/modules/PerspectiveImage/PerspectiveImage.php CHANGED
@@ -516,10 +516,11 @@ class DSM_Perspective_Image extends ET_Builder_Module {
516
  // Module classnames
517
 
518
  $class = "dsm-perspective-image-wrapper";
 
519
  if ( ! in_array( $animation_style, array( '', 'none' ) ) ) {
520
- $class .= ' et-waypoint';
521
  }
522
-
523
  if ( 'on' === $is_overlay_applied ) {
524
  $class .= ' et_pb_has_overlay';
525
  }
516
  // Module classnames
517
 
518
  $class = "dsm-perspective-image-wrapper";
519
+ // Module classnames
520
  if ( ! in_array( $animation_style, array( '', 'none' ) ) ) {
521
+ $this->add_classname( 'et-waypoint' );
522
  }
523
+
524
  if ( 'on' === $is_overlay_applied ) {
525
  $class .= ' et_pb_has_overlay';
526
  }
readme.txt CHANGED
@@ -5,7 +5,7 @@ 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.4
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -86,6 +86,9 @@ Divi Builder >= version 2.1
86
  PHP version >= 5.6
87
 
88
  == Changelog ==
 
 
 
89
  = 1.3.4 - 7.12.2018 =
90
  * Changed: Readme and tested up to the latest Divi and WordPress 5.0
91
 
5
  Requires at least: 4.5
6
  Tested up to: 5.0
7
  Requires PHP: 5.6
8
+ Stable tag: 1.3.5
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
86
  PHP version >= 5.6
87
 
88
  == Changelog ==
89
+ = 1.3.5 - 7.12.2018 =
90
+ * Fixed: Supreme Image Module not showing up on frontend when using together with animation.
91
+
92
  = 1.3.4 - 7.12.2018 =
93
  * Changed: Readme and tested up to the latest Divi and WordPress 5.0
94
 
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.4
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.4' );
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.5
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.5' );
40
 
41
  if ( ! function_exists( 'dsm_initialize_extension' ) ):
42
  /**