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 | Livemesh SiteOrigin Widgets |
Version | 2.8.5 |
Comparing to | |
See all releases |
Code changes from version 2.8.4 to 2.8.5
- admin/views/settings.php +3 -3
- livemesh-siteorigin-widgets.php +2 -2
- plugin.php +2 -2
- readme.txt +6 -2
admin/views/settings.php
CHANGED
@@ -68,7 +68,7 @@ $custom_css = lsow_get_option('lsow_custom_css', '');
|
|
68 |
<p class="lsow-desc"><?php echo __('Select the default theme color.', 'livemesh-so-widgets') ?></p>
|
69 |
<div class="lsow-spacer" style="height: 5px"></div>
|
70 |
<input class="lsow-colorpicker" name="lsow_theme_color" type="text"
|
71 |
-
data-default="#f94213" value="<?php echo $theme_color ?>"/>
|
72 |
</div>
|
73 |
|
74 |
|
@@ -80,7 +80,7 @@ $custom_css = lsow_get_option('lsow_custom_css', '');
|
|
80 |
<p class="lsow-desc"><?php echo __('Select the default hover color for your theme.', 'livemesh-so-widgets') ?></p>
|
81 |
<div class="lsow-spacer" style="height: 5px"></div>
|
82 |
<input class="lsow-colorpicker" name="lsow_theme_hover_color" type="text"
|
83 |
-
data-default="#888888" value="<?php echo $theme_hover_color ?>"/>
|
84 |
</div>
|
85 |
|
86 |
|
@@ -133,7 +133,7 @@ $custom_css = lsow_get_option('lsow_custom_css', '');
|
|
133 |
|
134 |
<div class="lsow-spacer" style="height: 15px"></div>
|
135 |
|
136 |
-
<textarea class="lsow-textarea" name="lsow_custom_css" id="lsow_custom_css" rows="20" cols="120"><?php echo $custom_css ?></textarea>
|
137 |
|
138 |
</div>
|
139 |
</div>
|
68 |
<p class="lsow-desc"><?php echo __('Select the default theme color.', 'livemesh-so-widgets') ?></p>
|
69 |
<div class="lsow-spacer" style="height: 5px"></div>
|
70 |
<input class="lsow-colorpicker" name="lsow_theme_color" type="text"
|
71 |
+
data-default="#f94213" value="<?php echo esc_attr($theme_color) ?>"/>
|
72 |
</div>
|
73 |
|
74 |
|
80 |
<p class="lsow-desc"><?php echo __('Select the default hover color for your theme.', 'livemesh-so-widgets') ?></p>
|
81 |
<div class="lsow-spacer" style="height: 5px"></div>
|
82 |
<input class="lsow-colorpicker" name="lsow_theme_hover_color" type="text"
|
83 |
+
data-default="#888888" value="<?php echo esc_attr($theme_hover_color) ?>"/>
|
84 |
</div>
|
85 |
|
86 |
|
133 |
|
134 |
<div class="lsow-spacer" style="height: 15px"></div>
|
135 |
|
136 |
+
<textarea class="lsow-textarea" name="lsow_custom_css" id="lsow_custom_css" rows="20" cols="120"><?php echo wp_kses_post( $custom_css) ?></textarea>
|
137 |
|
138 |
</div>
|
139 |
</div>
|
livemesh-siteorigin-widgets.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.8.
|
12 |
* Text Domain: livemesh-so-widgets
|
13 |
* Domain Path: languages
|
14 |
*
|
@@ -34,7 +34,7 @@ if ( !defined( 'ABSPATH' ) ) {
|
|
34 |
// Ensure the free version is deactivated if premium is running
|
35 |
|
36 |
if ( !function_exists( 'lsow_fs' ) ) {
|
37 |
-
define( 'LSOW_VERSION', '2.8.
|
38 |
// Plugin Folder Path
|
39 |
define( 'LSOW_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
40 |
// Plugin Folder URL
|
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.8.5
|
12 |
* Text Domain: livemesh-so-widgets
|
13 |
* Domain Path: languages
|
14 |
*
|
34 |
// Ensure the free version is deactivated if premium is running
|
35 |
|
36 |
if ( !function_exists( 'lsow_fs' ) ) {
|
37 |
+
define( 'LSOW_VERSION', '2.8.5' );
|
38 |
// Plugin Folder Path
|
39 |
define( 'LSOW_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
40 |
// Plugin Folder URL
|
plugin.php
CHANGED
@@ -43,7 +43,7 @@ if ( !class_exists( 'Livemesh_SiteOrigin_Widgets' ) ) {
|
|
43 |
public function __clone()
|
44 |
{
|
45 |
// Cloning instances of the class is forbidden
|
46 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-so-widgets' ), '2.8.
|
47 |
}
|
48 |
|
49 |
/**
|
@@ -53,7 +53,7 @@ if ( !class_exists( 'Livemesh_SiteOrigin_Widgets' ) ) {
|
|
53 |
public function __wakeup()
|
54 |
{
|
55 |
// Unserializing instances of the class is forbidden
|
56 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-so-widgets' ), '2.8.
|
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-so-widgets' ), '2.8.5' );
|
47 |
}
|
48 |
|
49 |
/**
|
53 |
public function __wakeup()
|
54 |
{
|
55 |
// Unserializing instances of the class is forbidden
|
56 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-so-widgets' ), '2.8.5' );
|
57 |
}
|
58 |
|
59 |
private function setup_debug_constants()
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Plugin URI: https://livemeshwp.com/siteorigin-widgets
|
|
4 |
Contributors: livemesh, freemius
|
5 |
Tags: widget, siteorigin, siteorigin widgets bundle, siteorigin page builder, siteorigin widgets, grid, gallery, video background, portfolio, carousel, shortcode, tabs, admin, plugin, page
|
6 |
Requires at least: 4.5
|
7 |
-
Tested up to: 6.
|
8 |
-
Stable Tag: 2.8.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -122,6 +122,10 @@ Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-po
|
|
122 |
|
123 |
== Changelog ==
|
124 |
|
|
|
|
|
|
|
|
|
125 |
= 2.8.4 =
|
126 |
* Updated - Freemius SDK 2.4.4
|
127 |
* Updated - Compatibility with WP 6.0.
|
4 |
Contributors: livemesh, freemius
|
5 |
Tags: widget, siteorigin, siteorigin widgets bundle, siteorigin page builder, siteorigin widgets, grid, gallery, video background, portfolio, carousel, shortcode, tabs, admin, plugin, page
|
6 |
Requires at least: 4.5
|
7 |
+
Tested up to: 6.1
|
8 |
+
Stable Tag: 2.8.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
122 |
|
123 |
== Changelog ==
|
124 |
|
125 |
+
= 2.8.5 =
|
126 |
+
* Added - Compatibility with WP 6.1
|
127 |
+
* Added - Missing sanitization checks for theme color admin settings
|
128 |
+
|
129 |
= 2.8.4 =
|
130 |
* Updated - Freemius SDK 2.4.4
|
131 |
* Updated - Compatibility with WP 6.0.
|