Version Description
- 12/02/2015 =
- Fix - ORDERS - Quick fix for WooCommerce v.2.3 compatibility.
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 2.0.13 |
Comparing to | |
See all releases |
Code changes from version 2.0.12 to 2.0.13
- includes/class-wcj-orders.php +2 -2
- readme.txt +4 -1
- woocommerce-jetpack.php +2 -2
includes/class-wcj-orders.php
CHANGED
@@ -77,8 +77,8 @@ class WCJ_Orders {
|
|
77 |
*/
|
78 |
public function add_custom_order_statuses_to_reports( $args ) {
|
79 |
|
80 |
-
if ( in_array( 'shop_order_refund', $args['order_types'] ) )
|
81 |
-
return $args
|
82 |
if ( is_array( $args['order_status'] ) && 1 === count( $args['order_status'] ) && in_array( 'refunded', $args['order_status'] ) )
|
83 |
return $args;
|
84 |
|
77 |
*/
|
78 |
public function add_custom_order_statuses_to_reports( $args ) {
|
79 |
|
80 |
+
/*if ( in_array( 'shop_order_refund', $args['order_types'] ) )
|
81 |
+
return $args;*/
|
82 |
if ( is_array( $args['order_status'] ) && 1 === count( $args['order_status'] ) && in_array( 'refunded', $args['order_status'] ) )
|
83 |
return $args;
|
84 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://algoritmika.com/donate/
|
|
4 |
Tags: woocommerce,woocommerce jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs,add to cart text,order number,sequential order numbering,email pdf invoice,pdf invoice,pdf invoices,already in cart,empty cart,redirect to checkout,minimum order amount,customize checkout fields,checkout fields,email,customize product tabs,product tabs,related products number,empty cart,redirect add to cart,redirect to checkout,product already in cart,custom payment gateway,payment gateway icon,auto-complete all orders,custom order statuses,custom order status,remove text from price,custom css,hide categories count,hide subcategories count,hide category count,hide subcategory count,display total sales,custom product tabs,remove product tab,payment gateway fee,
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -68,6 +68,9 @@ To unlock all WooCommerce Jetpack features, please install additional <a href="h
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
71 |
= 2.0.12 - 14/01/2015 =
|
72 |
* Dev - **Reports** - WooJetpack Orders Reports: More Ranges.
|
73 |
* Fix - CURRENCIES - **Prices and Currencies by Country** - Slicing the array in `update_database()`.
|
4 |
Tags: woocommerce,woocommerce jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs,add to cart text,order number,sequential order numbering,email pdf invoice,pdf invoice,pdf invoices,already in cart,empty cart,redirect to checkout,minimum order amount,customize checkout fields,checkout fields,email,customize product tabs,product tabs,related products number,empty cart,redirect add to cart,redirect to checkout,product already in cart,custom payment gateway,payment gateway icon,auto-complete all orders,custom order statuses,custom order status,remove text from price,custom css,hide categories count,hide subcategories count,hide category count,hide subcategory count,display total sales,custom product tabs,remove product tab,payment gateway fee,
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 2.0.13
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 2.0.13 - 12/02/2015 =
|
72 |
+
* Fix - ORDERS - Quick fix for WooCommerce v.2.3 compatibility.
|
73 |
+
|
74 |
= 2.0.12 - 14/01/2015 =
|
75 |
* Dev - **Reports** - WooJetpack Orders Reports: More Ranges.
|
76 |
* Fix - CURRENCIES - **Prices and Currencies by Country** - Slicing the array in `update_database()`.
|
woocommerce-jetpack.php
CHANGED
@@ -3,10 +3,10 @@
|
|
3 |
Plugin Name: WooCommerce Jetpack
|
4 |
Plugin URI: http://woojetpack.com
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
-
Version: 2.0.
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
-
Copyright: ©
|
10 |
License: GNU General Public License v3.0
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
12 |
*/
|
3 |
Plugin Name: WooCommerce Jetpack
|
4 |
Plugin URI: http://woojetpack.com
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
+
Version: 2.0.13
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
+
Copyright: © 2015 Algoritmika Ltd.
|
10 |
License: GNU General Public License v3.0
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
12 |
*/
|