WooCommerce Cart Tab - Version 0.3.0

Version Description

  • 04/03/2014 =
  • WooCommerce 2.1 compatibility.
Download this release

Release Info

Developer jameskoster
Plugin Icon wp plugin WooCommerce Cart Tab
Version 0.3.0
Comparing to
See all releases

Code changes from version 0.2.2 to 0.3.0

Files changed (2) hide show
  1. cart-tab.php +4 -3
  2. readme.txt +5 -2
cart-tab.php CHANGED
@@ -2,10 +2,10 @@
2
  /*
3
  Plugin Name: WooCommerce Cart Tab
4
  Plugin URI: http://jameskoster.co.uk/tag/cart-tab/
5
- Version: 0.2.2
6
  Description: Displays a sitewide link to the cart which reveals the cart contents on hover.
7
  Author: jameskoster
8
- Tested up to: 3.6.1
9
  Author URI: http://jameskoster.co.uk
10
  Text Domain: woocommerce-cart-tab
11
  Domain Path: /languages/
@@ -86,8 +86,9 @@ if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', g
86
 
87
 
88
  // Admin
89
- add_action( 'woocommerce_settings_image_options_after', array( $this, 'admin_settings' ), 20);
90
  add_action( 'woocommerce_update_options_catalog', array( $this, 'save_admin_settings' ) );
 
91
  }
92
 
93
 
2
  /*
3
  Plugin Name: WooCommerce Cart Tab
4
  Plugin URI: http://jameskoster.co.uk/tag/cart-tab/
5
+ Version: 0.3.0
6
  Description: Displays a sitewide link to the cart which reveals the cart contents on hover.
7
  Author: jameskoster
8
+ Tested up to: 3.8.1
9
  Author URI: http://jameskoster.co.uk
10
  Text Domain: woocommerce-cart-tab
11
  Domain Path: /languages/
86
 
87
 
88
  // Admin
89
+ add_action( 'woocommerce_settings_image_options_after', array( $this, 'admin_settings' ), 20 );
90
  add_action( 'woocommerce_update_options_catalog', array( $this, 'save_admin_settings' ) );
91
+ add_action( 'woocommerce_update_options_products', array( $this, 'save_admin_settings' ) );
92
  }
93
 
94
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: jameskoster
3
  Tags: woocommerce, ecommerce, cart
4
  Requires at least: 3.5
5
- Tested up to: 3.6.1
6
- Stable tag: 0.2.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -46,6 +46,9 @@ Thanks! Please fork the repo on <a href="https://github.com/jameskoster/woocomme
46
 
47
  == Changelog ==
48
 
 
 
 
49
  = 0.2.2 - 14/01/2014 =
50
  * Sanitized some outputs (kudos colegeissinger).
51
 
2
  Contributors: jameskoster
3
  Tags: woocommerce, ecommerce, cart
4
  Requires at least: 3.5
5
+ Tested up to: 3.8.1
6
+ Stable tag: 0.3.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
46
 
47
  == Changelog ==
48
 
49
+ = 0.3.0 - 04/03/2014 =
50
+ * WooCommerce 2.1 compatibility.
51
+
52
  = 0.2.2 - 14/01/2014 =
53
  * Sanitized some outputs (kudos colegeissinger).
54