Version Description
- Tweak - Increased the number of columns allowed in Posts Carousel.
- Added - Compatibility with Elementor 3.5.
Download this release
Release Info
Developer | livemesh |
Plugin | Addons for Elementor |
Version | 6.15 |
Comparing to | |
See all releases |
Code changes from version 6.14 to 6.15
- addons-for-elementor.php +4 -4
- includes/widgets/posts-carousel.php +6 -6
- plugin.php +2 -2
- readme.txt +5 -1
addons-for-elementor.php
CHANGED
@@ -8,11 +8,11 @@
|
|
8 |
* Author URI: https://livemeshelementor.com
|
9 |
* License: GPL3
|
10 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
-
* Version: 6.
|
12 |
* Text Domain: livemesh-el-addons
|
13 |
* Domain Path: languages
|
14 |
-
* Elementor tested up to: 3.
|
15 |
-
* Elementor Pro tested up to: 3.
|
16 |
*
|
17 |
* Livemesh Addons for Elementor is distributed under the terms of the GNU
|
18 |
* General Public License as published by the Free Software Foundation,
|
@@ -37,7 +37,7 @@ if ( !defined( 'ABSPATH' ) ) {
|
|
37 |
|
38 |
if ( !function_exists( 'lae_fs' ) ) {
|
39 |
// Plugin version
|
40 |
-
define( 'LAE_VERSION', '6.
|
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.15
|
12 |
* Text Domain: livemesh-el-addons
|
13 |
* Domain Path: languages
|
14 |
+
* Elementor tested up to: 3.5.0
|
15 |
+
* Elementor Pro tested up to: 3.5.0
|
16 |
*
|
17 |
* Livemesh Addons for Elementor is distributed under the terms of the GNU
|
18 |
* General Public License as published by the Free Software Foundation,
|
37 |
|
38 |
if ( !function_exists( 'lae_fs' ) ) {
|
39 |
// Plugin version
|
40 |
+
define( 'LAE_VERSION', '6.15' );
|
41 |
// Plugin Root File
|
42 |
define( 'LAE_PLUGIN_FILE', __FILE__ );
|
43 |
// Plugin Folder Path
|
includes/widgets/posts-carousel.php
CHANGED
@@ -421,7 +421,7 @@ class LAE_Posts_Carousel_Widget extends LAE_Widget_Base
|
|
421 |
'label' => __( 'Columns per row', 'livemesh-el-addons' ),
|
422 |
'type' => Controls_Manager::NUMBER,
|
423 |
'min' => 1,
|
424 |
-
'max' =>
|
425 |
'step' => 1,
|
426 |
'default' => 3,
|
427 |
] );
|
@@ -429,7 +429,7 @@ class LAE_Posts_Carousel_Widget extends LAE_Widget_Base
|
|
429 |
'label' => __( 'Columns to scroll', 'livemesh-el-addons' ),
|
430 |
'type' => Controls_Manager::NUMBER,
|
431 |
'min' => 1,
|
432 |
-
'max' =>
|
433 |
'step' => 1,
|
434 |
'default' => 3,
|
435 |
] );
|
@@ -451,7 +451,7 @@ class LAE_Posts_Carousel_Widget extends LAE_Widget_Base
|
|
451 |
'label' => __( 'Columns per row', 'livemesh-el-addons' ),
|
452 |
'type' => Controls_Manager::NUMBER,
|
453 |
'min' => 1,
|
454 |
-
'max' =>
|
455 |
'step' => 1,
|
456 |
'default' => 2,
|
457 |
] );
|
@@ -459,7 +459,7 @@ class LAE_Posts_Carousel_Widget extends LAE_Widget_Base
|
|
459 |
'label' => __( 'Columns to scroll', 'livemesh-el-addons' ),
|
460 |
'type' => Controls_Manager::NUMBER,
|
461 |
'min' => 1,
|
462 |
-
'max' =>
|
463 |
'step' => 1,
|
464 |
'default' => 2,
|
465 |
] );
|
@@ -487,7 +487,7 @@ class LAE_Posts_Carousel_Widget extends LAE_Widget_Base
|
|
487 |
'label' => __( 'Columns per row', 'livemesh-el-addons' ),
|
488 |
'type' => Controls_Manager::NUMBER,
|
489 |
'min' => 1,
|
490 |
-
'max' =>
|
491 |
'step' => 1,
|
492 |
'default' => 1,
|
493 |
] );
|
@@ -495,7 +495,7 @@ class LAE_Posts_Carousel_Widget extends LAE_Widget_Base
|
|
495 |
'label' => __( 'Columns to scroll', 'livemesh-el-addons' ),
|
496 |
'type' => Controls_Manager::NUMBER,
|
497 |
'min' => 1,
|
498 |
-
'max' =>
|
499 |
'step' => 1,
|
500 |
'default' => 1,
|
501 |
] );
|
421 |
'label' => __( 'Columns per row', 'livemesh-el-addons' ),
|
422 |
'type' => Controls_Manager::NUMBER,
|
423 |
'min' => 1,
|
424 |
+
'max' => 8,
|
425 |
'step' => 1,
|
426 |
'default' => 3,
|
427 |
] );
|
429 |
'label' => __( 'Columns to scroll', 'livemesh-el-addons' ),
|
430 |
'type' => Controls_Manager::NUMBER,
|
431 |
'min' => 1,
|
432 |
+
'max' => 8,
|
433 |
'step' => 1,
|
434 |
'default' => 3,
|
435 |
] );
|
451 |
'label' => __( 'Columns per row', 'livemesh-el-addons' ),
|
452 |
'type' => Controls_Manager::NUMBER,
|
453 |
'min' => 1,
|
454 |
+
'max' => 6,
|
455 |
'step' => 1,
|
456 |
'default' => 2,
|
457 |
] );
|
459 |
'label' => __( 'Columns to scroll', 'livemesh-el-addons' ),
|
460 |
'type' => Controls_Manager::NUMBER,
|
461 |
'min' => 1,
|
462 |
+
'max' => 6,
|
463 |
'step' => 1,
|
464 |
'default' => 2,
|
465 |
] );
|
487 |
'label' => __( 'Columns per row', 'livemesh-el-addons' ),
|
488 |
'type' => Controls_Manager::NUMBER,
|
489 |
'min' => 1,
|
490 |
+
'max' => 4,
|
491 |
'step' => 1,
|
492 |
'default' => 1,
|
493 |
] );
|
495 |
'label' => __( 'Columns to scroll', 'livemesh-el-addons' ),
|
496 |
'type' => Controls_Manager::NUMBER,
|
497 |
'min' => 1,
|
498 |
+
'max' => 4,
|
499 |
'step' => 1,
|
500 |
'default' => 1,
|
501 |
] );
|
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.
|
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.
|
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.15' );
|
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.15' );
|
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: 5.0
|
8 |
Tested up to: 5.8
|
9 |
Requires PHP: 5.6
|
10 |
-
Stable Tag: 6.
|
11 |
License: GPLv3
|
12 |
License URI: https://opensource.org/licenses/GPL-3.0
|
13 |
|
@@ -259,6 +259,10 @@ Email us at support[at]livemeshthemes.com and we will be happy to assist you.
|
|
259 |
|
260 |
|
261 |
|
|
|
|
|
|
|
|
|
262 |
= 6.14 =
|
263 |
* Fixed - Deprecated warnings raised on PHP 8.
|
264 |
* Added - Compatibility with PHP 8.
|
7 |
Requires at least: 5.0
|
8 |
Tested up to: 5.8
|
9 |
Requires PHP: 5.6
|
10 |
+
Stable Tag: 6.15
|
11 |
License: GPLv3
|
12 |
License URI: https://opensource.org/licenses/GPL-3.0
|
13 |
|
259 |
|
260 |
|
261 |
|
262 |
+
= 6.15 =
|
263 |
+
* Tweak - Increased the number of columns allowed in Posts Carousel.
|
264 |
+
* Added - Compatibility with Elementor 3.5.
|
265 |
+
|
266 |
= 6.14 =
|
267 |
* Fixed - Deprecated warnings raised on PHP 8.
|
268 |
* Added - Compatibility with PHP 8.
|