Genesis Connect for WooCommerce - Version 0.9.1

Version Description

  • Released 6 March 2012
  • Fixes call to undefined function error in sp-plugins-integration/genesis-simple-sidebars.php
Download this release

Release Info

Developer studiograsshopper
Plugin Icon 128x128 Genesis Connect for WooCommerce
Version 0.9.1
Comparing to
See all releases

Code changes from version 0.9.0 to 0.9.1

genesis-connect-woocommerce.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Genesis Connect for WooCommerce
4
  Plugin URI: http://www.studiopress.com/plugins/genesis-connect-woocommerce
5
- Version: 0.9.0
6
  Author: StudioPress
7
  Author URI: http://www.studiopress.com/
8
  Description: Allows you to seamlessly integrate WooCommerce with the Genesis Framework and Genesis child themes.
@@ -13,6 +13,7 @@ License URI: http://www.opensource.org/licenses/gpl-license.php
13
  Special thanks to Ade Walker (http://www.studiograsshopper.ch/) for his contributions to this plugin.
14
  */
15
 
 
16
  register_activation_hook( __FILE__, 'gencwooc_activation' );
17
  /**
18
  * Check the environment when plugin is activated
2
  /*
3
  Plugin Name: Genesis Connect for WooCommerce
4
  Plugin URI: http://www.studiopress.com/plugins/genesis-connect-woocommerce
5
+ Version: 0.9.1
6
  Author: StudioPress
7
  Author URI: http://www.studiopress.com/
8
  Description: Allows you to seamlessly integrate WooCommerce with the Genesis Framework and Genesis child themes.
13
  Special thanks to Ade Walker (http://www.studiograsshopper.ch/) for his contributions to this plugin.
14
  */
15
 
16
+
17
  register_activation_hook( __FILE__, 'gencwooc_activation' );
18
  /**
19
  * Check the environment when plugin is activated
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: nathanrice, studiopress, studiograsshopper
3
  Tags: genesis, genesiswp, studiopress, woocommerce
4
  Requires at least: 3.3
5
  Tested up to: 3.3.1
6
- Stable tag: 0.9.0
7
 
8
  This plugin allows you to seamlessly integrate WooCommerce with the Genesis Framework and Genesis child themes.
9
 
@@ -15,6 +15,8 @@ To allow easy customization of these templates, and ensure that you do not lose
15
 
16
  Additionally, the plugin makes [Genesis Simple Sidebars](http://wordpress.org/extend/plugins/genesis-simple-sidebars/) and [Genesis Simple Menus](http://wordpress.org/extend/plugins/genesis-simple-menus/) compatible with WooCommerce.
17
 
 
 
18
  == Installation ==
19
 
20
  1. Upload the entire `genesis-connect-woocommerce` folder to the `/wp-content/plugins/` directory
@@ -136,5 +138,9 @@ For the benefit of theme developers and customizers, here is a summary of possib
136
 
137
  == Changelog ==
138
 
 
 
 
 
139
  = 0.9.0 =
140
  * Initial Release
3
  Tags: genesis, genesiswp, studiopress, woocommerce
4
  Requires at least: 3.3
5
  Tested up to: 3.3.1
6
+ Stable tag: 0.9.1
7
 
8
  This plugin allows you to seamlessly integrate WooCommerce with the Genesis Framework and Genesis child themes.
9
 
15
 
16
  Additionally, the plugin makes [Genesis Simple Sidebars](http://wordpress.org/extend/plugins/genesis-simple-sidebars/) and [Genesis Simple Menus](http://wordpress.org/extend/plugins/genesis-simple-menus/) compatible with WooCommerce.
17
 
18
+ Tested with WooCommerce 1.5
19
+
20
  == Installation ==
21
 
22
  1. Upload the entire `genesis-connect-woocommerce` folder to the `/wp-content/plugins/` directory
138
 
139
  == Changelog ==
140
 
141
+ = 0.9.1 =
142
+ * Released 6 March 2012
143
+ * Fixes call to undefined function error in sp-plugins-integration/genesis-simple-sidebars.php
144
+
145
  = 0.9.0 =
146
  * Initial Release
sp-plugins-integration/genesis-simple-sidebars.php CHANGED
@@ -129,7 +129,7 @@ function gencwooc_ss_do_sidebar_alt() {
129
  } else {
130
 
131
  /** Hand back control to GSS */
132
- if ( ! ss_do_one_sidebar_alt( $bar ) )
133
  genesis_do_sidebar_alt();
134
 
135
  }
129
  } else {
130
 
131
  /** Hand back control to GSS */
132
+ if ( ! ss_do_one_sidebar( $bar ) )
133
  genesis_do_sidebar_alt();
134
 
135
  }