Version Description
- 26 January 2022 =
- Sidebar Emulator: Accounted for a potential notice when setting widget ID.
- Updated the
Tested up to tag
to5.9
.
Download this release
Release Info
Developer | SiteOrigin |
Plugin | Page Builder by SiteOrigin |
Version | 2.16.1 |
Comparing to | |
See all releases |
Code changes from version 2.16.0 to 2.16.1
- inc/sidebars-emulator.php +3 -1
- readme.txt +7 -3
- siteorigin-panels.php +2 -2
inc/sidebars-emulator.php
CHANGED
@@ -50,7 +50,9 @@ class SiteOrigin_Panels_Sidebars_Emulator {
|
|
50 |
if ( $instance_class == $widget_class && ! empty( $sidebar_id ) ) {
|
51 |
//The option value uses only the widget id number as keys
|
52 |
preg_match( '/-([0-9]+$)/', $sidebar_id, $num_match );
|
53 |
-
|
|
|
|
|
54 |
}
|
55 |
}
|
56 |
}
|
50 |
if ( $instance_class == $widget_class && ! empty( $sidebar_id ) ) {
|
51 |
//The option value uses only the widget id number as keys
|
52 |
preg_match( '/-([0-9]+$)/', $sidebar_id, $num_match );
|
53 |
+
if ( ! empty( $num_match ) ) {
|
54 |
+
$args[0][ $num_match[1] ] = $widget_instance;
|
55 |
+
}
|
56 |
}
|
57 |
}
|
58 |
}
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Page Builder by SiteOrigin ===
|
2 |
Tags: page builder, responsive, parallax, widgets, blocks, gallery, layout, grid, cms, builder, widget
|
3 |
Requires at least: 4.7
|
4 |
-
Tested up to: 5.
|
5 |
Requires PHP: 5.6.20
|
6 |
-
Stable tag: 2.16.
|
7 |
-
Build time: 2022-01-
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
Donate link: https://siteorigin.com/downloads/premium/
|
@@ -107,6 +107,10 @@ SiteOrigin Premium includes access to our professional email support service, pe
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
|
|
110 |
= 2.16.0 - 04 January 2022 =
|
111 |
* Added a new global `Mobile Widget Bottom Margin` setting.
|
112 |
* Added a new global `Mobile Cell Bottom Margin` setting.
|
1 |
=== Page Builder by SiteOrigin ===
|
2 |
Tags: page builder, responsive, parallax, widgets, blocks, gallery, layout, grid, cms, builder, widget
|
3 |
Requires at least: 4.7
|
4 |
+
Tested up to: 5.9
|
5 |
Requires PHP: 5.6.20
|
6 |
+
Stable tag: 2.16.1
|
7 |
+
Build time: 2022-01-26T22:27:28+02:00
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
Donate link: https://siteorigin.com/downloads/premium/
|
107 |
|
108 |
== Changelog ==
|
109 |
|
110 |
+
= 2.16.1 - 26 January 2022 =
|
111 |
+
* Sidebar Emulator: Accounted for a potential notice when setting widget ID.
|
112 |
+
* Updated the `Tested up to tag` to `5.9`.
|
113 |
+
|
114 |
= 2.16.0 - 04 January 2022 =
|
115 |
* Added a new global `Mobile Widget Bottom Margin` setting.
|
116 |
* Added a new global `Mobile Cell Bottom Margin` setting.
|
siteorigin-panels.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Page Builder by SiteOrigin
|
4 |
Plugin URI: https://siteorigin.com/page-builder/
|
5 |
Description: A drag and drop, responsive page builder that simplifies building your website.
|
6 |
-
Version: 2.16.
|
7 |
Author: SiteOrigin
|
8 |
Author URI: https://siteorigin.com
|
9 |
License: GPL3
|
@@ -11,7 +11,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
11 |
Donate link: http://siteorigin.com/page-builder/#donate
|
12 |
*/
|
13 |
|
14 |
-
define( 'SITEORIGIN_PANELS_VERSION', '2.16.
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|
3 |
Plugin Name: Page Builder by SiteOrigin
|
4 |
Plugin URI: https://siteorigin.com/page-builder/
|
5 |
Description: A drag and drop, responsive page builder that simplifies building your website.
|
6 |
+
Version: 2.16.1
|
7 |
Author: SiteOrigin
|
8 |
Author URI: https://siteorigin.com
|
9 |
License: GPL3
|
11 |
Donate link: http://siteorigin.com/page-builder/#donate
|
12 |
*/
|
13 |
|
14 |
+
define( 'SITEORIGIN_PANELS_VERSION', '2.16.1' );
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|