Addons for Elementor - Version 6.10.2

Version Description

  • Fixed - The Posts Gridbox Slider does not display some of the posts in Safari browser.
Download this release

Release Info

Developer livemesh
Plugin Icon 128x128 Addons for Elementor
Version 6.10.2
Comparing to
See all releases

Code changes from version 6.10.1 to 6.10.2

addons-for-elementor.php CHANGED
@@ -8,7 +8,7 @@
8
  * Author URI: https://livemeshelementor.com
9
  * License: GPL3
10
  * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
11
- * Version: 6.10.1
12
  * Text Domain: livemesh-el-addons
13
  * Domain Path: languages
14
  * Elementor tested up to: 3.2.0
@@ -37,7 +37,7 @@ if ( !defined( 'ABSPATH' ) ) {
37
 
38
  if ( !function_exists( 'lae_fs' ) ) {
39
  // Plugin version
40
- define( 'LAE_VERSION', '6.10.1' );
41
  // Plugin Root File
42
  define( 'LAE_PLUGIN_FILE', __FILE__ );
43
  // Plugin Folder Path
8
  * Author URI: https://livemeshelementor.com
9
  * License: GPL3
10
  * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
11
+ * Version: 6.10.2
12
  * Text Domain: livemesh-el-addons
13
  * Domain Path: languages
14
  * Elementor tested up to: 3.2.0
37
 
38
  if ( !function_exists( 'lae_fs' ) ) {
39
  // Plugin version
40
+ define( 'LAE_VERSION', '6.10.2' );
41
  // Plugin Root File
42
  define( 'LAE_PLUGIN_FILE', __FILE__ );
43
  // Plugin Folder Path
plugin.php CHANGED
@@ -45,7 +45,7 @@ if ( !class_exists( 'Livemesh_Elementor_Addons' ) ) {
45
  public function __clone()
46
  {
47
  // Cloning instances of the class is forbidden
48
- _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-el-addons' ), '6.10.1' );
49
  }
50
 
51
  /**
@@ -55,7 +55,7 @@ if ( !class_exists( 'Livemesh_Elementor_Addons' ) ) {
55
  public function __wakeup()
56
  {
57
  // Unserializing instances of the class is forbidden
58
- _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-el-addons' ), '6.10.1' );
59
  }
60
 
61
  private function setup_debug_constants()
45
  public function __clone()
46
  {
47
  // Cloning instances of the class is forbidden
48
+ _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-el-addons' ), '6.10.2' );
49
  }
50
 
51
  /**
55
  public function __wakeup()
56
  {
57
  // Unserializing instances of the class is forbidden
58
+ _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-el-addons' ), '6.10.2' );
59
  }
60
 
61
  private function setup_debug_constants()
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: elementor, elementor addons, elementor extensions, elementor widgets, page
7
  Requires at least: 4.5
8
  Tested up to: 5.7
9
  Requires PHP: 5.6
10
- Stable Tag: 6.10.1
11
  License: GPLv3
12
  License URI: https://opensource.org/licenses/GPL-3.0
13
 
@@ -15,7 +15,7 @@ A collection of premium quality addons or modules for use in Elementor page buil
15
 
16
  == Description ==
17
 
18
- **The Best Rated and Oldest Addons Plugin For Elementor**
19
  ★★★★★<br>
20
 
21
  **Livemesh Addons for Elementor features a huge collection of premium, easy-to-use yet highly functional extensions that can be used in Elementor page builder.** This is really a premium plugin that you can get for free.
@@ -259,6 +259,9 @@ Email us at support[at]livemeshthemes.com and we will be happy to assist you.
259
 
260
 
261
 
 
 
 
262
  = 6.10.1 =
263
  * Fixed - The Posts Slider Style 1 does not display post summary information.
264
  * Fixed - With Team Members addon Style 2, the member details wraps around the profile photo. Moved to CSS flex box based layout of elements.
7
  Requires at least: 4.5
8
  Tested up to: 5.7
9
  Requires PHP: 5.6
10
+ Stable Tag: 6.10.2
11
  License: GPLv3
12
  License URI: https://opensource.org/licenses/GPL-3.0
13
 
15
 
16
  == Description ==
17
 
18
+ **The Oldest, Best Rated and Most Versatile Posts Addons Plugin For Elementor**
19
  ★★★★★<br>
20
 
21
  **Livemesh Addons for Elementor features a huge collection of premium, easy-to-use yet highly functional extensions that can be used in Elementor page builder.** This is really a premium plugin that you can get for free.
259
 
260
 
261
 
262
+ = 6.10.2 =
263
+ * Fixed - The Posts Gridbox Slider does not display some of the posts in Safari browser.
264
+
265
  = 6.10.1 =
266
  * Fixed - The Posts Slider Style 1 does not display post summary information.
267
  * Fixed - With Team Members addon Style 2, the member details wraps around the profile photo. Moved to CSS flex box based layout of elements.
templates/addons/posts-gridbox-slider/style-1.php CHANGED
@@ -21,7 +21,7 @@ $item_height = ($slider_height / 2);
21
  if ($modulo && $modulo <= 1)
22
  $item_height = $slider_height;
23
 
24
- $item_height_css = ($item_height) ? 'min-height:' . $item_height . 'px;' : '';
25
 
26
  if ($modulo == 1) : ?>
27
  <div class="lae-posts-gridbox-slide">
21
  if ($modulo && $modulo <= 1)
22
  $item_height = $slider_height;
23
 
24
+ $item_height_css = ($item_height) ? 'height:' . $item_height . 'px;' : '';
25
 
26
  if ($modulo == 1) : ?>
27
  <div class="lae-posts-gridbox-slide">
templates/addons/posts-gridbox-slider/style-2.php CHANGED
@@ -21,7 +21,7 @@ $item_height = ($slider_height / 2);
21
  if ($modulo && $modulo <= 1)
22
  $item_height = $slider_height;
23
 
24
- $item_height_css = ($item_height) ? 'min-height:' . $item_height . 'px;' : '';
25
 
26
  if ($modulo == 1) : ?>
27
  <div class="lae-posts-gridbox-slide">
21
  if ($modulo && $modulo <= 1)
22
  $item_height = $slider_height;
23
 
24
+ $item_height_css = ($item_height) ? 'height:' . $item_height . 'px;' : '';
25
 
26
  if ($modulo == 1) : ?>
27
  <div class="lae-posts-gridbox-slide">
templates/addons/posts-gridbox-slider/style-3.php CHANGED
@@ -18,7 +18,7 @@ $modulo = ($counter % 5);
18
 
19
  $item_height = ($slider_height / 2);
20
 
21
- $item_height_css = ($item_height) ? 'min-height:' . $item_height . 'px;' : '';
22
 
23
  if ($modulo == 1) : ?>
24
  <div class="lae-posts-gridbox-slide">
18
 
19
  $item_height = ($slider_height / 2);
20
 
21
+ $item_height_css = ($item_height) ? 'height:' . $item_height . 'px;' : '';
22
 
23
  if ($modulo == 1) : ?>
24
  <div class="lae-posts-gridbox-slide">