Version Description
- October 7 2015 =
- Fixed: Issue with Call To Action widget being missing.
Download this release
Release Info
Developer | gpriday |
Plugin | SiteOrigin Widgets Bundle |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 1.5.1
- readme.txt +4 -1
- so-widgets-bundle.php +2 -2
- widgets/so-cta-widget/so-cta-widget.php +2 -2
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
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.
|
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.5 - October 5 2015 =
|
54 |
* Fixed: Conflict between WPML and repeaters.
|
55 |
* Added Simple Masonry Layout widget.
|
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.5
|
6 |
License: GPLv3 or later
|
7 |
Contributors: gpriday, braam-genis
|
8 |
|
50 |
|
51 |
== Changelog ==
|
52 |
|
53 |
+
= 1.5.1 - October 7 2015 =
|
54 |
+
* Fixed: Issue with Call To Action widget being missing.
|
55 |
+
|
56 |
= 1.5 - October 5 2015 =
|
57 |
* Fixed: Conflict between WPML and repeaters.
|
58 |
* Added Simple Masonry Layout 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.5
|
6 |
Text Domain: so-widgets-bundle
|
7 |
Domain Path: /languages
|
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.5');
|
16 |
define('SOW_BUNDLE_JS_SUFFIX', '.min');
|
17 |
define('SOW_BUNDLE_BASE_FILE', __FILE__);
|
18 |
|
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.5.1
|
6 |
Text Domain: so-widgets-bundle
|
7 |
Domain Path: /languages
|
8 |
Author: SiteOrigin
|
12 |
License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
13 |
*/
|
14 |
|
15 |
+
define('SOW_BUNDLE_VERSION', '1.5.1');
|
16 |
define('SOW_BUNDLE_JS_SUFFIX', '.min');
|
17 |
define('SOW_BUNDLE_BASE_FILE', __FILE__);
|
18 |
|
widgets/so-cta-widget/so-cta-widget.php
CHANGED
@@ -6,7 +6,7 @@ Author: SiteOrigin
|
|
6 |
Author URI: https://siteorigin.com
|
7 |
*/
|
8 |
|
9 |
-
class
|
10 |
|
11 |
function __construct() {
|
12 |
|
@@ -122,4 +122,4 @@ class SiteOrigin_Widget_Cta_widget extends SiteOrigin_Widget {
|
|
122 |
|
123 |
}
|
124 |
|
125 |
-
siteorigin_widget_register('sow-cta', __FILE__, '
|
6 |
Author URI: https://siteorigin.com
|
7 |
*/
|
8 |
|
9 |
+
class SiteOrigin_Widget_Cta_Widget extends SiteOrigin_Widget {
|
10 |
|
11 |
function __construct() {
|
12 |
|
122 |
|
123 |
}
|
124 |
|
125 |
+
siteorigin_widget_register('sow-cta', __FILE__, 'SiteOrigin_Widget_Cta_Widget');
|