Version Description
- Added - Compatibility with WP 6.1 and Elementor 3.8
- Added - Missing sanitization checks for theme color admin settings
Download this release
Release Info
Developer | livemesh |
Plugin | Addons for Elementor |
Version | 7.2.4 |
Comparing to | |
See all releases |
Code changes from version 7.2.3 to 7.2.4
- addons-for-elementor.php +4 -4
- admin/views/settings.php +3 -3
- plugin.php +2 -2
- readme.txt +7 -3
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: 7.2.
|
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', '7.2.
|
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: 7.2.4
|
12 |
* Text Domain: livemesh-el-addons
|
13 |
* Domain Path: languages
|
14 |
+
* Elementor tested up to: 3.8.0
|
15 |
+
* Elementor Pro tested up to: 3.8.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', '7.2.4' );
|
41 |
// Plugin Root File
|
42 |
define( 'LAE_PLUGIN_FILE', __FILE__ );
|
43 |
// Plugin Folder Path
|
admin/views/settings.php
CHANGED
@@ -108,7 +108,7 @@ echo __( 'Select the default theme color.', 'livemesh-el-addons' ) ;
|
|
108 |
<div class="lae-spacer" style="height: 5px"></div>
|
109 |
<input class="lae-colorpicker" name="lae_theme_color" type="text"
|
110 |
data-default="#f94213" value="<?php
|
111 |
-
echo $theme_color ;
|
112 |
?>"/>
|
113 |
</div>
|
114 |
|
@@ -126,7 +126,7 @@ echo __( 'Select the default hover color for your theme.', 'livemesh-el-addons'
|
|
126 |
<div class="lae-spacer" style="height: 5px"></div>
|
127 |
<input class="lae-colorpicker" name="lae_theme_hover_color" type="text"
|
128 |
data-default="#888888" value="<?php
|
129 |
-
echo $theme_hover_color ;
|
130 |
?>"/>
|
131 |
</div>
|
132 |
|
@@ -625,7 +625,7 @@ echo __( 'Please enter custom CSS for custom styling of addons', 'livemesh-el-a
|
|
625 |
|
626 |
<textarea class="lae-textarea" name="lae_custom_css" id="lae_custom_css" rows="20"
|
627 |
cols="120"><?php
|
628 |
-
echo $custom_css ;
|
629 |
?></textarea>
|
630 |
|
631 |
</div>
|
108 |
<div class="lae-spacer" style="height: 5px"></div>
|
109 |
<input class="lae-colorpicker" name="lae_theme_color" type="text"
|
110 |
data-default="#f94213" value="<?php
|
111 |
+
echo esc_attr( $theme_color ) ;
|
112 |
?>"/>
|
113 |
</div>
|
114 |
|
126 |
<div class="lae-spacer" style="height: 5px"></div>
|
127 |
<input class="lae-colorpicker" name="lae_theme_hover_color" type="text"
|
128 |
data-default="#888888" value="<?php
|
129 |
+
echo esc_attr( $theme_hover_color ) ;
|
130 |
?>"/>
|
131 |
</div>
|
132 |
|
625 |
|
626 |
<textarea class="lae-textarea" name="lae_custom_css" id="lae_custom_css" rows="20"
|
627 |
cols="120"><?php
|
628 |
+
echo wp_kses_post( $custom_css ) ;
|
629 |
?></textarea>
|
630 |
|
631 |
</div>
|
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' ), '7.2.
|
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' ), '7.2.
|
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' ), '7.2.4' );
|
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' ), '7.2.4' );
|
59 |
}
|
60 |
|
61 |
private function setup_debug_constants()
|
readme.txt
CHANGED
@@ -4,10 +4,10 @@ Plugin URI: https://livemeshelementor.com
|
|
4 |
Donate link: https://livemeshelementor.com/
|
5 |
Contributors: livemesh, elementoraddons, freemius
|
6 |
Tags: elementor, elementor addons, elementor extensions, elementor widgets, page builder, woocommerce elementor
|
7 |
-
Requires at least: 5.
|
8 |
-
Tested up to: 6.
|
9 |
Requires PHP: 5.6
|
10 |
-
Stable Tag: 7.2.
|
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 |
= 7.2.3 =
|
263 |
* Added - New Marquee Text widget with plenty of customization options
|
264 |
|
4 |
Donate link: https://livemeshelementor.com/
|
5 |
Contributors: livemesh, elementoraddons, freemius
|
6 |
Tags: elementor, elementor addons, elementor extensions, elementor widgets, page builder, woocommerce elementor
|
7 |
+
Requires at least: 5.4
|
8 |
+
Tested up to: 6.1
|
9 |
Requires PHP: 5.6
|
10 |
+
Stable Tag: 7.2.4
|
11 |
License: GPLv3
|
12 |
License URI: https://opensource.org/licenses/GPL-3.0
|
13 |
|
259 |
|
260 |
|
261 |
|
262 |
+
= 7.2.4 =
|
263 |
+
* Added - Compatibility with WP 6.1 and Elementor 3.8
|
264 |
+
* Added - Missing sanitization checks for theme color admin settings
|
265 |
+
|
266 |
= 7.2.3 =
|
267 |
* Added - New Marquee Text widget with plenty of customization options
|
268 |
|