Version Description
- 14 February 2022 =
- Fixed Background Images: Change to
scroll
on mobile devices. Resolves iOS bug.
Download this release
Release Info
Developer | SiteOrigin |
Plugin | Page Builder by SiteOrigin |
Version | 2.16.3 |
Comparing to | |
See all releases |
Code changes from version 2.16.2 to 2.16.3
- inc/renderer.php +1 -1
- inc/styles.php +8 -0
- readme.txt +5 -2
- siteorigin-panels.php +2 -2
inc/renderer.php
CHANGED
@@ -562,7 +562,7 @@ class SiteOrigin_Panels_Renderer {
|
|
562 |
}
|
563 |
|
564 |
$style_wrapper = '';
|
565 |
-
if ( ! empty( $attributes ) || ! empty( $standard_css ) || ! empty( $mobile_css ) ) {
|
566 |
if ( empty( $attributes['class'] ) ) {
|
567 |
$attributes['class'] = array();
|
568 |
}
|
562 |
}
|
563 |
|
564 |
$style_wrapper = '';
|
565 |
+
if ( ! empty( $attributes ) || ! empty( $standard_css ) || ! empty( $tablet_css )|| ! empty( $mobile_css ) ) {
|
566 |
if ( empty( $attributes['class'] ) ) {
|
567 |
$attributes['class'] = array();
|
568 |
}
|
inc/styles.php
CHANGED
@@ -684,6 +684,14 @@ class SiteOrigin_Panels_Styles {
|
|
684 |
$css['padding'] = $style[ 'tablet_padding' ];
|
685 |
}
|
686 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
return $css;
|
688 |
}
|
689 |
|
684 |
$css['padding'] = $style[ 'tablet_padding' ];
|
685 |
}
|
686 |
|
687 |
+
if (
|
688 |
+
! empty( $style['background_display'] ) &&
|
689 |
+
$style['background_display'] == 'fixed' &&
|
690 |
+
! ( empty( $style['background_image_attachment'] ) && empty( $style['background_image_attachment_fallback'] ) )
|
691 |
+
) {
|
692 |
+
$css[ 'background-attachment' ] = 'scroll';
|
693 |
+
}
|
694 |
+
|
695 |
return $css;
|
696 |
}
|
697 |
|
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-02-
|
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.2 - 07 February 2022 =
|
111 |
* Added Yoast Video SEO plugin integration.
|
112 |
* Restored content analysis functionality for newer Yoast SEO versions.
|
3 |
Requires at least: 4.7
|
4 |
Tested up to: 5.9
|
5 |
Requires PHP: 5.6.20
|
6 |
+
Stable tag: 2.16.3
|
7 |
+
Build time: 2022-02-14T11:17:01+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.3 - 14 February 2022 =
|
111 |
+
* Fixed Background Images: Change to `scroll` on mobile devices. Resolves iOS bug.
|
112 |
+
|
113 |
= 2.16.2 - 07 February 2022 =
|
114 |
* Added Yoast Video SEO plugin integration.
|
115 |
* Restored content analysis functionality for newer Yoast SEO versions.
|
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.3
|
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.3' );
|
15 |
if ( ! defined( 'SITEORIGIN_PANELS_JS_SUFFIX' ) ) {
|
16 |
define( 'SITEORIGIN_PANELS_JS_SUFFIX', '.min' );
|
17 |
}
|