Skip to content

Instantly share code, notes, and snippets.

@woogist
Created June 24, 2015 15:21
Show Gist options
  • Save woogist/379b3e5dd7a3bb36195d to your computer and use it in GitHub Desktop.
Save woogist/379b3e5dd7a3bb36195d to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_reports_get_order_report_query', 'wc_custom_limit_query' );
function wc_custom_limit_query( $query ) {
global $wpdb;
$wpdb->query( "SET OPTION SQL_BIG_SELECTS=1" );
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment