SiteOrigin Widgets Bundle - Version 1.40.2

Version Description

  • 03 September 2022 =
  • Blog: Added SiteOrigin Premium Blog Addon CTA.
Download this release

Release Info

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

Code changes from version 1.40.1 to 1.40.2

lang/so-widgets-bundle.pot CHANGED
@@ -737,6 +737,14 @@ msgstr ""
737
  msgid "Post navigation"
738
  msgstr ""
739
 
 
 
 
 
 
 
 
 
740
  #: widgets/button/button.php:4, widgets/button/button.php:17
741
  msgid "A powerful yet simple button widget for your sidebars or Page Builder pages."
742
  msgstr ""
737
  msgid "Post navigation"
738
  msgstr ""
739
 
740
+ #: widgets/blog/blog.php:1091
741
+ msgid "Get more pagination themes and Ajax reloading with %sSiteOrigin Premium%s"
742
+ msgstr ""
743
+
744
+ #: widgets/blog/blog.php:1096
745
+ msgid "Adjust the post Read More link text and choose a custom post date format with %sSiteOrigin Premium%s"
746
+ msgstr ""
747
+
748
  #: widgets/button/button.php:4, widgets/button/button.php:17
749
  msgid "A powerful yet simple button widget for your sidebars or Page Builder pages."
750
  msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Tags: widget, button, slider, hero, google maps, image, carousel, lottie, featur
3
  Requires at least: 4.2
4
  Tested up to: 6.0
5
  Requires PHP: 5.6.20
6
- Stable tag: 1.40.1
7
- Build time: 2022-08-30T20:21:00+02:00
8
  License: GPLv3 or later
9
  Contributors: gpriday, braam-genis, alexgso
10
  Donate link: https://siteorigin.com/downloads/premium/
@@ -106,6 +106,9 @@ The Widgets Bundle global interface is available at Plugins > SiteOrigin Widgets
106
 
107
  == Changelog ==
108
 
 
 
 
109
  = 1.40.1 - 30 August 2022 =
110
  * Contact Form: Added a new Dropdown Select setting `Allow multiple selections`.
111
  * Blog: Added a `Sticky` indicator to post meta.
3
  Requires at least: 4.2
4
  Tested up to: 6.0
5
  Requires PHP: 5.6.20
6
+ Stable tag: 1.40.2
7
+ Build time: 2022-09-03T15:28:23+02:00
8
  License: GPLv3 or later
9
  Contributors: gpriday, braam-genis, alexgso
10
  Donate link: https://siteorigin.com/downloads/premium/
106
 
107
  == Changelog ==
108
 
109
+ = 1.40.2 - 03 September 2022 =
110
+ * Blog: Added SiteOrigin Premium Blog Addon CTA.
111
+
112
  = 1.40.1 - 30 August 2022 =
113
  * Contact Form: Added a new Dropdown Select setting `Allow multiple selections`.
114
  * Blog: Added a `Sticky` indicator to post meta.
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.40.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.40.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.40.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.40.2' );
16
  define( 'SOW_BUNDLE_BASE_FILE', __FILE__ );
17
 
18
  // Allow JS suffix to be pre-set.
widgets/blog/blog.php CHANGED
@@ -1083,6 +1083,22 @@ class SiteOrigin_Widget_Blog_Widget extends SiteOrigin_Widget {
1083
  <?php
1084
  }
1085
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1086
  }
1087
 
1088
  siteorigin_widget_register( 'sow-blog', __FILE__, 'SiteOrigin_Widget_Blog_Widget' );
1083
  <?php
1084
  }
1085
  }
1086
+
1087
+ function get_form_teaser() {
1088
+ if ( class_exists( 'SiteOrigin_Premium' ) ) return false;
1089
+ return array(
1090
+ sprintf(
1091
+ __( 'Get more pagination themes and Ajax reloading with %sSiteOrigin Premium%s', 'so-widgets-bundle' ),
1092
+ '<a href="https://siteorigin.com/downloads/premium/?featured_addon=plugin/blog" target="_blank" rel="noopener noreferrer">',
1093
+ '</a>'
1094
+ ),
1095
+ sprintf(
1096
+ __( 'Adjust the post Read More link text and choose a custom post date format with %sSiteOrigin Premium%s', 'so-widgets-bundle' ),
1097
+ '<a href="https://siteorigin.com/downloads/premium/?featured_addon=plugin/blog" target="_blank" rel="noopener noreferrer">',
1098
+ '</a>'
1099
+ ),
1100
+ );
1101
+ }
1102
  }
1103
 
1104
  siteorigin_widget_register( 'sow-blog', __FILE__, 'SiteOrigin_Widget_Blog_Widget' );