Merge branch 'release/2.4.7'
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 885 B After Width: | Height: | Size: 885 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 109 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 133 KiB |
|
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 250 KiB After Width: | Height: | Size: 250 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
|
@ -1,5 +1,14 @@
|
|||
*** WooCommerce Subscriptions Changelog ***
|
||||
|
||||
2018.12.21 - version 2.4.7
|
||||
* Fix: Fix an issue with the release date of 2.4.6.
|
||||
|
||||
2018.12.21 - version 2.4.6
|
||||
* Dev: Add 'woocommerce_subscription_is_manual' filter. PR#3102
|
||||
* Tweak: Add action attributes to the add to cart form on subscription product pages. PR#3105
|
||||
* Fix: Remove "Your subscription will be activated when payment clears" on the order received page when the subscription is already active. PR#3099
|
||||
* Fix: [WP 5.0.2] Fix an issue where the Admin Subscriptions table was empty. PR#3139
|
||||
|
||||
2018.11.28 - version 2.4.5
|
||||
* Fix: Fix caching on data for the Upcoming Recurring Revenue and Subscriptions By Date reports. PR#3069.
|
||||
* Fix: Fix compatibility with Disable Report Cache Updates mini-plugin. PR#3069.
|
||||
|
|
|
|||
|
|
@ -828,7 +828,7 @@ class WCS_Admin_Post_Types {
|
|||
}
|
||||
|
||||
// Status
|
||||
if ( ! isset( $vars['post_status'] ) ) {
|
||||
if ( empty( $vars['post_status'] ) ) {
|
||||
$vars['post_status'] = array_keys( wcs_get_subscription_statuses() );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
0
includes/admin/debug-tools/class-wcs-debug-tool-cache-background-updater.php
Normal file → Executable file
0
includes/admin/reports/class-wcs-report-subscription-by-customer.php
Normal file → Executable file
0
includes/admin/reports/class-wcs-report-subscription-events-by-date.php
Normal file → Executable file
0
includes/admin/reports/class-wcs-report-subscription-payment-retry.php
Normal file → Executable file
0
includes/admin/reports/class-wcs-report-upcoming-recurring-revenue.php
Normal file → Executable file
0
includes/admin/reports/deprecated/class-wc-report-retention-rate.php
Normal file → Executable file
0
includes/admin/reports/deprecated/class-wc-report-subscription-by-customer.php
Normal file → Executable file
0
includes/admin/reports/deprecated/class-wc-report-subscription-by-product.php
Normal file → Executable file
0
includes/admin/reports/deprecated/class-wc-report-subscription-events-by-date.php
Normal file → Executable file
0
includes/admin/reports/deprecated/class-wc-report-subscription-payment-retry.php
Normal file → Executable file
0
includes/admin/reports/deprecated/class-wc-report-upcoming-recurring-revenue.php
Normal file → Executable file
|
|
@ -575,7 +575,7 @@ class WC_Subscription extends WC_Order {
|
|||
$is_manual = false;
|
||||
}
|
||||
|
||||
return $is_manual;
|
||||
return apply_filters( 'woocommerce_subscription_is_manual', $is_manual, $this );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||