Version Description
- 06 March 2022 =
- Full-Width Containers Using CSS: Ensured full-width global CSS is only output once.
Download this release
Release Info
Developer | SiteOrigin |
Plugin | Page Builder by SiteOrigin |
Version | 2.16.5 |
Comparing to | |
See all releases |
Code changes from version 2.16.4 to 2.16.5
- inc/renderer.php +6 -2
- lang/siteorigin-panels.pot +1 -1
- readme.txt +5 -2
- siteorigin-panels.php +2 -2
inc/renderer.php
CHANGED
@@ -349,8 +349,12 @@ class SiteOrigin_Panels_Renderer {
|
|
349 |
// Do we need to remove the theme container on this page?
|
350 |
if (
|
351 |
$this->container['css_override'] &&
|
352 |
-
$this->container['full_width'] // Does this layout have full width layouts?
|
353 |
-
|
|
|
|
|
|
|
|
|
354 |
$css->add_css(
|
355 |
esc_html( $this->container['selector'] ),
|
356 |
array(
|
349 |
// Do we need to remove the theme container on this page?
|
350 |
if (
|
351 |
$this->container['css_override'] &&
|
352 |
+
$this->container['full_width'] && // Does this layout have full width layouts?
|
353 |
+
! defined( 'siteorigin_css_override' )
|
354 |
+
) {
|
355 |
+
// Prevent this CSS from being added again.
|
356 |
+
define( 'siteorigin_css_override', true );
|
357 |
+
|
358 |
$css->add_css(
|
359 |
esc_html( $this->container['selector'] ),
|
360 |
array(
|
lang/siteorigin-panels.pot
CHANGED
@@ -629,7 +629,7 @@ msgstr ""
|
|
629 |
msgid "Custom Home Page Builder"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: inc/renderer.php:
|
633 |
msgid "Prevented SiteOrigin layout from repeated rendering."
|
634 |
msgstr ""
|
635 |
|
629 |
msgid "Custom Home Page Builder"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: inc/renderer.php:437
|
633 |
msgid "Prevented SiteOrigin layout from repeated rendering."
|
634 |
msgstr ""
|
635 |
|
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: 5.9
|
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.4 - 19 February 2022 =
|
111 |
* Full-Width Containers Using CSS: Restored normal functionality when Standard or Full-Width rows not present.
|
112 |
* Full-Width Containers Using CSS: Resolved a collapse issue when the browser resolution equals the collapse value.
|
3 |
Requires at least: 4.7
|
4 |
Tested up to: 5.9
|
5 |
Requires PHP: 5.6.20
|
6 |
+
Stable tag: 2.16.5
|
7 |
+
Build time: 2022-03-06T12:16:46+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.5 - 06 March 2022 =
|
111 |
+
* Full-Width Containers Using CSS: Ensured full-width global CSS is only output once.
|
112 |
+
|
113 |
= 2.16.4 - 19 February 2022 =
|
114 |
* Full-Width Containers Using CSS: Restored normal functionality when Standard or Full-Width rows not present.
|
115 |
* Full-Width Containers Using CSS: Resolved a collapse issue when the browser resolution equals the collapse value.
|
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.5
|
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.5' );
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|