SiteOrigin Widgets Bundle - Version 1.29.2

Version Description

  • 04 February 2022 =
  • Widgets Block: Excluded the Contact Form from caching. Resolves error on first submission.
Download this release

Release Info

Developer SiteOrigin
Plugin Icon 128x128 SiteOrigin Widgets Bundle
Version 1.29.2
Comparing to
See all releases

Code changes from version 1.29.1 to 1.29.2

compat/block-editor/widget-block.php CHANGED
@@ -162,6 +162,7 @@ class SiteOrigin_Widgets_Bundle_Widget_Block {
162
  empty( $attributes['widgetHtml'] ) ||
163
  ! empty( $_POST ) ||
164
  $attributes['widgetClass'] == 'SiteOrigin_Widget_PostCarousel_Widget' ||
 
165
  // Is WPML active? If so, is there a translation for this page?
166
  (
167
  defined( 'ICL_LANGUAGE_CODE' ) &&
162
  empty( $attributes['widgetHtml'] ) ||
163
  ! empty( $_POST ) ||
164
  $attributes['widgetClass'] == 'SiteOrigin_Widget_PostCarousel_Widget' ||
165
+ $attributes['widgetClass'] == 'SiteOrigin_Widgets_ContactForm_Widget' ||
166
  // Is WPML active? If so, is there a translation for this page?
167
  (
168
  defined( 'ICL_LANGUAGE_CODE' ) &&
lang/so-widgets-bundle.pot CHANGED
@@ -256,7 +256,7 @@ msgstr ""
256
  msgid "You need to select a widget type before you'll see anything here. :)"
257
  msgstr ""
258
 
259
- #: compat/block-editor/widget-block.php:210
260
  msgid "Invalid widget class %s. Please make sure the widget has been activated in %sSiteOrigin Widgets%s."
261
  msgstr ""
262
 
256
  msgid "You need to select a widget type before you'll see anything here. :)"
257
  msgstr ""
258
 
259
+ #: compat/block-editor/widget-block.php:211
260
  msgid "Invalid widget class %s. Please make sure the widget has been activated in %sSiteOrigin Widgets%s."
261
  msgstr ""
262
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Tags: widget, button, slider, hero, google maps, image, carousel, features, icon
3
  Requires at least: 4.2
4
  Tested up to: 5.9
5
  Requires PHP: 5.6.20
6
- Stable tag: 1.29.1
7
- Build time: 2022-01-27T15:12:13+02:00
8
  License: GPLv3 or later
9
  Contributors: gpriday, braam-genis, alexgso
10
  Donate link: https://siteorigin.com/downloads/premium/
@@ -100,6 +100,9 @@ The Widgets Bundle global interface is available at Plugins > SiteOrigin Widgets
100
 
101
  == Changelog ==
102
 
 
 
 
103
  = 1.29.1 - 27 January 2022 =
104
  * Updated `Tested up to` tag to `5.9`.
105
  * Widgets Block: Prevented a potential `Undefined Error` outside of the WP admin.
3
  Requires at least: 4.2
4
  Tested up to: 5.9
5
  Requires PHP: 5.6.20
6
+ Stable tag: 1.29.2
7
+ Build time: 2022-02-04T19:11:41+02:00
8
  License: GPLv3 or later
9
  Contributors: gpriday, braam-genis, alexgso
10
  Donate link: https://siteorigin.com/downloads/premium/
100
 
101
  == Changelog ==
102
 
103
+ = 1.29.2 - 04 February 2022 =
104
+ * Widgets Block: Excluded the Contact Form from caching. Resolves error on first submission.
105
+
106
  = 1.29.1 - 27 January 2022 =
107
  * Updated `Tested up to` tag to `5.9`.
108
  * Widgets Block: Prevented a potential `Undefined Error` outside of the WP admin.
so-widgets-bundle.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: SiteOrigin Widgets Bundle
4
  Description: A highly customizable collection of widgets, ready to be used anywhere, neatly bundled into a single plugin.
5
- Version: 1.29.1
6
  Text Domain: so-widgets-bundle
7
  Domain Path: /lang
8
  Author: SiteOrigin
@@ -12,7 +12,7 @@ License: GPL3
12
  License URI: https://www.gnu.org/licenses/gpl-3.0.txt
13
  */
14
 
15
- define( 'SOW_BUNDLE_VERSION', '1.29.1' );
16
  define( 'SOW_BUNDLE_BASE_FILE', __FILE__ );
17
 
18
  // Allow JS suffix to be pre-set.
2
  /*
3
  Plugin Name: SiteOrigin Widgets Bundle
4
  Description: A highly customizable collection of widgets, ready to be used anywhere, neatly bundled into a single plugin.
5
+ Version: 1.29.2
6
  Text Domain: so-widgets-bundle
7
  Domain Path: /lang
8
  Author: SiteOrigin
12
  License URI: https://www.gnu.org/licenses/gpl-3.0.txt
13
  */
14
 
15
+ define( 'SOW_BUNDLE_VERSION', '1.29.2' );
16
  define( 'SOW_BUNDLE_BASE_FILE', __FILE__ );
17
 
18
  // Allow JS suffix to be pre-set.