Version Description
- 09 July 2022 =
- Legacy Layout Engine: Resolved
Undefined index: cell_index
notice.
Download this release
Release Info
Developer | SiteOrigin |
Plugin | Page Builder by SiteOrigin |
Version | 2.16.16 |
Comparing to | |
See all releases |
Code changes from version 2.16.15 to 2.16.16
- inc/renderer-legacy.php +10 -3
- readme.txt +5 -2
- siteorigin-panels.php +2 -2
inc/renderer-legacy.php
CHANGED
@@ -133,9 +133,16 @@ class SiteOrigin_Panels_Renderer_Legacy extends SiteOrigin_Panels_Renderer {
|
|
133 |
|
134 |
foreach ( $panels_data['widgets'] as $widget_id => $widget ) {
|
135 |
if ( ! empty( $widget['panels_info']['style']['link_color'] ) ) {
|
136 |
-
$css->add_widget_css(
|
137 |
-
|
138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
}
|
140 |
}
|
141 |
|
133 |
|
134 |
foreach ( $panels_data['widgets'] as $widget_id => $widget ) {
|
135 |
if ( ! empty( $widget['panels_info']['style']['link_color'] ) ) {
|
136 |
+
$css->add_widget_css(
|
137 |
+
$post_id,
|
138 |
+
$widget['panels_info']['grid'],
|
139 |
+
$widget['panels_info']['cell'],
|
140 |
+
$widget['panels_info']['id'],
|
141 |
+
' a',
|
142 |
+
array(
|
143 |
+
'color' => $widget['panels_info']['style']['link_color']
|
144 |
+
)
|
145 |
+
);
|
146 |
}
|
147 |
}
|
148 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Tags: page builder, responsive, parallax, widgets, blocks, gallery, layout, grid
|
|
3 |
Requires at least: 4.7
|
4 |
Tested up to: 6.0
|
5 |
Requires PHP: 5.6.20
|
6 |
-
Stable tag: 2.16.
|
7 |
-
Build time: 2022-
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
Donate link: https://siteorigin.com/downloads/premium/
|
@@ -107,6 +107,9 @@ SiteOrigin Premium includes access to our professional email support service, pe
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
110 |
= 2.16.15 - 27 June 2022 =
|
111 |
* Resolved edge case empty widgets warning.
|
112 |
|
3 |
Requires at least: 4.7
|
4 |
Tested up to: 6.0
|
5 |
Requires PHP: 5.6.20
|
6 |
+
Stable tag: 2.16.16
|
7 |
+
Build time: 2022-07-09T15:07:12+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.16 - 09 July 2022 =
|
111 |
+
* Legacy Layout Engine: Resolved `Undefined index: cell_index` notice.
|
112 |
+
|
113 |
= 2.16.15 - 27 June 2022 =
|
114 |
* Resolved edge case empty widgets warning.
|
115 |
|
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.16
|
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.16' );
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|