Version Description
- Added - Compatibility with WP 6.1
- Added - Missing sanitization checks for theme color admin settings
Download this release
Release Info
Developer | livemesh |
Plugin | Addons for WPBakery Page Builder |
Version | 2.9.4 |
Comparing to | |
See all releases |
Code changes from version 2.9.3 to 2.9.4
- addons-for-visual-composer.php +2 -2
- admin/views/settings.php +3 -3
- plugin.php +2 -2
- readme.txt +6 -2
addons-for-visual-composer.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* Author URI: https://www.livemeshthemes.com/
|
9 |
* License: GPL3
|
10 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
-
* Version: 2.9.
|
12 |
* Text Domain: livemesh-vc-addons
|
13 |
* Domain Path: languages
|
14 |
*
|
@@ -36,7 +36,7 @@ if ( !defined( 'ABSPATH' ) ) {
|
|
36 |
|
37 |
if ( !function_exists( 'lvca_fs' ) ) {
|
38 |
// Plugin version
|
39 |
-
define( 'LVCA_VERSION', '2.9.
|
40 |
// Plugin Root File
|
41 |
define( 'LVCA_PLUGIN_FILE', __FILE__ );
|
42 |
// Plugin Folder Path
|
8 |
* Author URI: https://www.livemeshthemes.com/
|
9 |
* License: GPL3
|
10 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
+
* Version: 2.9.4
|
12 |
* Text Domain: livemesh-vc-addons
|
13 |
* Domain Path: languages
|
14 |
*
|
36 |
|
37 |
if ( !function_exists( 'lvca_fs' ) ) {
|
38 |
// Plugin version
|
39 |
+
define( 'LVCA_VERSION', '2.9.4' );
|
40 |
// Plugin Root File
|
41 |
define( 'LVCA_PLUGIN_FILE', __FILE__ );
|
42 |
// Plugin Folder Path
|
admin/views/settings.php
CHANGED
@@ -102,7 +102,7 @@ echo __( 'Select the default theme color.', 'livemesh-vc-addons' ) ;
|
|
102 |
<div class="lvca-spacer" style="height: 5px"></div>
|
103 |
<input class="lvca-colorpicker" name="lvca_theme_color" type="text"
|
104 |
data-default="#f94213" value="<?php
|
105 |
-
echo $theme_color ;
|
106 |
?>"/>
|
107 |
</div>
|
108 |
|
@@ -120,7 +120,7 @@ echo __( 'Select the default hover color for your theme.', 'livemesh-vc-addons'
|
|
120 |
<div class="lvca-spacer" style="height: 5px"></div>
|
121 |
<input class="lvca-colorpicker" name="lvca_theme_hover_color" type="text"
|
122 |
data-default="#888888" value="<?php
|
123 |
-
echo $theme_hover_color ;
|
124 |
?>"/>
|
125 |
</div>
|
126 |
|
@@ -532,7 +532,7 @@ echo __( 'Please enter custom CSS for custom styling of elements', 'livemesh-vc
|
|
532 |
<div class="lvca-spacer" style="height: 15px"></div>
|
533 |
|
534 |
<textarea class="lvca-textarea" name="lvca_custom_css" id="lvca_custom_css" rows="20" cols="120"><?php
|
535 |
-
echo $custom_css ;
|
536 |
?></textarea>
|
537 |
|
538 |
</div>
|
102 |
<div class="lvca-spacer" style="height: 5px"></div>
|
103 |
<input class="lvca-colorpicker" name="lvca_theme_color" type="text"
|
104 |
data-default="#f94213" value="<?php
|
105 |
+
echo esc_attr($theme_color) ;
|
106 |
?>"/>
|
107 |
</div>
|
108 |
|
120 |
<div class="lvca-spacer" style="height: 5px"></div>
|
121 |
<input class="lvca-colorpicker" name="lvca_theme_hover_color" type="text"
|
122 |
data-default="#888888" value="<?php
|
123 |
+
echo esc_attr($theme_hover_color) ;
|
124 |
?>"/>
|
125 |
</div>
|
126 |
|
532 |
<div class="lvca-spacer" style="height: 15px"></div>
|
533 |
|
534 |
<textarea class="lvca-textarea" name="lvca_custom_css" id="lvca_custom_css" rows="20" cols="120"><?php
|
535 |
+
echo wp_kses_post( $custom_css) ;
|
536 |
?></textarea>
|
537 |
|
538 |
</div>
|
plugin.php
CHANGED
@@ -43,7 +43,7 @@ if ( !class_exists( 'Livemesh_VC_Addons' ) ) {
|
|
43 |
public function __clone()
|
44 |
{
|
45 |
// Cloning instances of the class is forbidden
|
46 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-vc-addons' ), '2.9.
|
47 |
}
|
48 |
|
49 |
/**
|
@@ -53,7 +53,7 @@ if ( !class_exists( 'Livemesh_VC_Addons' ) ) {
|
|
53 |
public function __wakeup()
|
54 |
{
|
55 |
// Unserializing instances of the class is forbidden
|
56 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-vc-addons' ), '2.9.
|
57 |
}
|
58 |
|
59 |
private function setup_debug_constants()
|
43 |
public function __clone()
|
44 |
{
|
45 |
// Cloning instances of the class is forbidden
|
46 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-vc-addons' ), '2.9.4' );
|
47 |
}
|
48 |
|
49 |
/**
|
53 |
public function __wakeup()
|
54 |
{
|
55 |
// Unserializing instances of the class is forbidden
|
56 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-vc-addons' ), '2.9.4' );
|
57 |
}
|
58 |
|
59 |
private function setup_debug_constants()
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Plugin URI: https://livemeshwp.com/wpbakery-addons
|
|
4 |
Contributors: livemesh, freemius
|
5 |
Tags: wpbakery page builder, wpbakery page builder addons, wpbakery, wpbakery page builder extensions, wpbakery addons, page builder, portfolio, carousel, post, posts, shortcodes, tabs, plugin, page
|
6 |
Requires at least: 4.5
|
7 |
-
Tested up to: 6.
|
8 |
-
Stable Tag: 2.9.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html-func
|
11 |
|
@@ -112,6 +112,10 @@ Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-po
|
|
112 |
|
113 |
== Changelog ==
|
114 |
|
|
|
|
|
|
|
|
|
115 |
= 2.9.3 =
|
116 |
* Updated - Freemius SDK 2.4.4
|
117 |
* Updated - Compatibility with WP 6.0.
|
4 |
Contributors: livemesh, freemius
|
5 |
Tags: wpbakery page builder, wpbakery page builder addons, wpbakery, wpbakery page builder extensions, wpbakery addons, page builder, portfolio, carousel, post, posts, shortcodes, tabs, plugin, page
|
6 |
Requires at least: 4.5
|
7 |
+
Tested up to: 6.1
|
8 |
+
Stable Tag: 2.9.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html-func
|
11 |
|
112 |
|
113 |
== Changelog ==
|
114 |
|
115 |
+
= 2.9.4 =
|
116 |
+
* Added - Compatibility with WP 6.1
|
117 |
+
* Added - Missing sanitization checks for theme color admin settings
|
118 |
+
|
119 |
= 2.9.3 =
|
120 |
* Updated - Freemius SDK 2.4.4
|
121 |
* Updated - Compatibility with WP 6.0.
|