Weaver Xtreme Theme Support - Version 1.3

Version Description

  • Fix WP_Widget PHP constructor
  • Test with WP 4.3
Download this release

Release Info

Developer wpweaver
Plugin Icon 128x128 Weaver Xtreme Theme Support
Version 1.3
Comparing to
See all releases

Code changes from version 1.2.1 to 1.3

Files changed (3) hide show
  1. includes/wvrx-ts-widgets.php +3 -3
  2. readme.txt +6 -2
  3. weaverx-ts.php +2 -2
includes/wvrx-ts-widgets.php CHANGED
@@ -9,7 +9,7 @@ class WeaverX_Widget_Text extends WP_Widget {
9
  $widget_ops = array('classname' => 'WeaverX_Widget_Text',
10
  'description' => __('Text Widget with Two Columns - with HTML and shortcode support. Also adds shortcodes to standard Text widget.','weaver-xtreme' /*adm*/));
11
  $control_ops = array('width' => 400, 'height' => 350);
12
- $this->WP_Widget('wvrx2_text', __('Weaver X Text 2','weaver-xtreme' /*adm*/), $widget_ops, $control_ops);
13
  }
14
 
15
  function widget( $args, $instance ) {
@@ -74,7 +74,7 @@ class WeaverX_Widget_PPText extends WP_Widget {
74
  function WeaverX_Widget_PPText() {
75
  $widget_ops = array('classname' => 'wvrx_widget_pptext', 'description' =>
76
  __('Display text on a Per Page basis. Add to Widget area to see instructions.','weaver-xtreme' /*adm*/) );
77
- $this->WP_Widget('wvrx_pptext', __('Weaver X Per Page Text','weaver-xtreme' /*adm*/), $widget_ops);
78
  }
79
 
80
  function widget( $args, $instance ) {
@@ -116,7 +116,7 @@ class WeaverX_Widget_Login extends WP_Widget {
116
 
117
  function WeaverX_Widget_Login() {
118
  $widget_ops = array('classname' => 'wvrx_widget_login', 'description' => __( "Log in/out, admin", 'weaver-xtreme' /*adm*/ ) );
119
- $this->WP_Widget('wvrx_login', __('Weaver X Login','weaver-xtreme' /*adm*/), $widget_ops);
120
  }
121
 
122
  function widget( $args, $instance ) {
9
  $widget_ops = array('classname' => 'WeaverX_Widget_Text',
10
  'description' => __('Text Widget with Two Columns - with HTML and shortcode support. Also adds shortcodes to standard Text widget.','weaver-xtreme' /*adm*/));
11
  $control_ops = array('width' => 400, 'height' => 350);
12
+ parent::__construct('wvrx2_text', __('Weaver X Text 2','weaver-xtreme' /*adm*/), $widget_ops, $control_ops);
13
  }
14
 
15
  function widget( $args, $instance ) {
74
  function WeaverX_Widget_PPText() {
75
  $widget_ops = array('classname' => 'wvrx_widget_pptext', 'description' =>
76
  __('Display text on a Per Page basis. Add to Widget area to see instructions.','weaver-xtreme' /*adm*/) );
77
+ parent::__construct('wvrx_pptext', __('Weaver X Per Page Text','weaver-xtreme' /*adm*/), $widget_ops);
78
  }
79
 
80
  function widget( $args, $instance ) {
116
 
117
  function WeaverX_Widget_Login() {
118
  $widget_ops = array('classname' => 'wvrx_widget_login', 'description' => __( "Log in/out, admin", 'weaver-xtreme' /*adm*/ ) );
119
+ parent::__construct('wvrx_login', __('Weaver X Login','weaver-xtreme' /*adm*/), $widget_ops);
120
  }
121
 
122
  function widget( $args, $instance ) {
readme.txt CHANGED
@@ -8,8 +8,8 @@ Author: wpweaver
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
  Requires at least: 4.0
11
- Tested up to: 4.2
12
- Stable tag: 1.2.1
13
 
14
  A useful shortcode and widget collection for Weaver Xtreme
15
 
@@ -74,6 +74,10 @@ Support for this plugin can best be found at our forum - http://forum.weaverthem
74
  This is the initial release of this plugin.
75
 
76
  == ChangeLog ==
 
 
 
 
77
  = 1.2.1 =
78
  * Tweak: Per Post CSS rules are only supported by Weaver Xtreme Plus.
79
 
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
  Requires at least: 4.0
11
+ Tested up to: 4.3
12
+ Stable tag: 1.3
13
 
14
  A useful shortcode and widget collection for Weaver Xtreme
15
 
74
  This is the initial release of this plugin.
75
 
76
  == ChangeLog ==
77
+ = 1.3 =
78
+ * Fix WP_Widget PHP constructor
79
+ * Test with WP 4.3
80
+
81
  = 1.2.1 =
82
  * Tweak: Per Post CSS rules are only supported by Weaver Xtreme Plus.
83
 
weaverx-ts.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://weavertheme.com/plugins
5
  Description: Weaver X Theme Support - a package of useful shortcodes and widgets that integrates closely with the Weaver X theme. This plugin Will also allow you to switch from Weaver X to any other theme and still be able to use the shortcodes and widgets from Weaver X with minimal effort.
6
  Author: wpweaver
7
  Author URI: http://weavertheme.com/about/
8
- Version: 1.2.1
9
  License: GPL V3
10
 
11
  Weaver Xtreme Theme Support
@@ -33,7 +33,7 @@ $theme = get_template_directory();
33
 
34
  if ( strpos( $theme, '/weaver-xtreme') !== false ) { // only load if Weaver Xtreme is the theme
35
 
36
- define ('WVRX_TS_VERSION','1.2.1');
37
  define ('WVRX_TS_MINIFY','.min'); // '' for dev, '.min' for production
38
  define ('WVRX_TS_APPEARANCE_PAGE', false );
39
 
5
  Description: Weaver X Theme Support - a package of useful shortcodes and widgets that integrates closely with the Weaver X theme. This plugin Will also allow you to switch from Weaver X to any other theme and still be able to use the shortcodes and widgets from Weaver X with minimal effort.
6
  Author: wpweaver
7
  Author URI: http://weavertheme.com/about/
8
+ Version: 1.3
9
  License: GPL V3
10
 
11
  Weaver Xtreme Theme Support
33
 
34
  if ( strpos( $theme, '/weaver-xtreme') !== false ) { // only load if Weaver Xtreme is the theme
35
 
36
+ define ('WVRX_TS_VERSION','1.3');
37
  define ('WVRX_TS_MINIFY','.min'); // '' for dev, '.min' for production
38
  define ('WVRX_TS_APPEARANCE_PAGE', false );
39