Version Description
- August 18 2015 =
- Urgent fix in preparation for WordPress 4.3 release
Download this release
Release Info
Developer | gpriday |
Plugin | SiteOrigin Widgets Bundle |
Version | 1.4.2 |
Comparing to | |
See all releases |
Code changes from version 1.4.1 to 1.4.2
- base/siteorigin-widget.class.php +1 -1
- readme.txt +5 -2
- so-widgets-bundle.php +3 -3
base/siteorigin-widget.class.php
CHANGED
@@ -58,7 +58,7 @@ abstract class SiteOrigin_Widget extends WP_Widget {
|
|
58 |
'width' => 600,
|
59 |
) );
|
60 |
|
61 |
-
parent::
|
62 |
$this->initialize();
|
63 |
|
64 |
// Let other plugins do additional initializing here
|
58 |
'width' => 600,
|
59 |
) );
|
60 |
|
61 |
+
parent::__construct($id, $name, $widget_options, $control_options);
|
62 |
$this->initialize();
|
63 |
|
64 |
// Let other plugins do additional initializing here
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== SiteOrigin Widgets Bundle ===
|
2 |
Tags: bundle, widget, button, slider, image, carousel, price table, google maps, tinymce, social links
|
3 |
Requires at least: 3.9
|
4 |
-
Tested up to: 4.
|
5 |
-
Stable tag: 1.4
|
6 |
License: GPLv3 or later
|
7 |
Contributors: gpriday, braam-genis
|
8 |
|
@@ -50,6 +50,9 @@ The SiteOrigin Widgets Bundle is the perfect platform to build widgets for your
|
|
50 |
|
51 |
== Changelog ==
|
52 |
|
|
|
|
|
|
|
53 |
= 1.4.1 - August 17 2015 =
|
54 |
* Updated to latest Font Awesome.
|
55 |
* Added TripAdvisor to social links widget.
|
1 |
=== SiteOrigin Widgets Bundle ===
|
2 |
Tags: bundle, widget, button, slider, image, carousel, price table, google maps, tinymce, social links
|
3 |
Requires at least: 3.9
|
4 |
+
Tested up to: 4.3
|
5 |
+
Stable tag: 1.4.1
|
6 |
License: GPLv3 or later
|
7 |
Contributors: gpriday, braam-genis
|
8 |
|
50 |
|
51 |
== Changelog ==
|
52 |
|
53 |
+
= 1.4.2 - August 18 2015 =
|
54 |
+
* Urgent fix in preparation for WordPress 4.3 release
|
55 |
+
|
56 |
= 1.4.1 - August 17 2015 =
|
57 |
* Updated to latest Font Awesome.
|
58 |
* Added TripAdvisor to social links widget.
|
so-widgets-bundle.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: SiteOrigin Widgets Bundle
|
4 |
Description: A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.
|
5 |
-
Version: 1.4.
|
6 |
Author: SiteOrigin
|
7 |
Author URI: https://siteorigin.com
|
8 |
Plugin URI: https://siteorigin.com/widgets-bundle/
|
@@ -10,7 +10,7 @@ License: GPL3
|
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
*/
|
12 |
|
13 |
-
define('SOW_BUNDLE_VERSION', '1.4.
|
14 |
define('SOW_BUNDLE_JS_SUFFIX', '.min');
|
15 |
define('SOW_BUNDLE_BASE_FILE', __FILE__);
|
16 |
|
@@ -45,7 +45,7 @@ class SiteOrigin_Widgets_Bundle {
|
|
45 |
|
46 |
// Initialize the widgets, but do it fairly late
|
47 |
add_action( 'plugins_loaded', array($this, 'set_plugin_textdomain'), 1 );
|
48 |
-
add_action( '
|
49 |
|
50 |
// Add the action links.
|
51 |
add_action( 'plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links') );
|
2 |
/*
|
3 |
Plugin Name: SiteOrigin Widgets Bundle
|
4 |
Description: A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.
|
5 |
+
Version: 1.4.2
|
6 |
Author: SiteOrigin
|
7 |
Author URI: https://siteorigin.com
|
8 |
Plugin URI: https://siteorigin.com/widgets-bundle/
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
*/
|
12 |
|
13 |
+
define('SOW_BUNDLE_VERSION', '1.4.2');
|
14 |
define('SOW_BUNDLE_JS_SUFFIX', '.min');
|
15 |
define('SOW_BUNDLE_BASE_FILE', __FILE__);
|
16 |
|
45 |
|
46 |
// Initialize the widgets, but do it fairly late
|
47 |
add_action( 'plugins_loaded', array($this, 'set_plugin_textdomain'), 1 );
|
48 |
+
add_action( 'after_setup_theme', array($this, 'load_widget_plugins'), 11 );
|
49 |
|
50 |
// Add the action links.
|
51 |
add_action( 'plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links') );
|