WooCommerce Orders Not Showing in Dashboard | bug after WordPress 5.0.2 Update

Here’s a small workaround you can use to fix this until a proper fix is released, just goto your theme function.php and insert following code


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 );

enjoy

#woocommerce
  • Email, SSL
  • 0 Users Found This Useful
Was this answer helpful?

Powered by WHMCompleteSolution