At my backend all orders after the 30.09.2018 are not displayed. 999 elements are in the list. Maybe this is the problem, because the orders are still there. With my reporting plugin I find all orders.
Solve that problem now. It is Christmas time and I’m not able to manage any order. What the hell…
Same problem, orders not showing on back end…fix pls
Canβt believe that something like that can happen with a new WordPress update release! The problem started with 5.0.2
Here’s a workaround for this issue, which you can use until a fix is released.
It works for me.
function fix_request_query_args_for_woocommerce( $query_args ) {
if ( isset( $query_args['post_status'] ) && empty( $query_args['post_status'] ) ) {
unset( $query_args['post_status'] );
}
return $query_args;
}
add_filter( 'request', 'fix_request_query_args_for_woocommerce', 1, 1 );
Thanks @pcworks. It works!
Same problem.
A fix will be deploy ?
same! “all” orders are gone, while the rest of the order status list can be checked (cancelled, refunded, pending etc)
Anonymous User 7944234
(@anonymized-7944234)
Thanks for the Fix PCWORKS !!!
Unbelievable that this bug nobody noticed before they released this update
@pcworks solution actually fixes the issue!
Hello,
could someone explain to me where to insert the fix string released by pc works?
@easykay-srl
/www/your-domain/wp-content/themes/your-theme/functions.php
Hi there,
The issue has been logged here:
β https://github.com/woocommerce/woocommerce/issues/22271
It also provides a temporary workaround until it gets fixed.
@corsonr Yes I found it there and it’s really working for me. π