Merge pull request #10530 from ConfusedTA/patch-1

Add filter to output from json_search_customers
This commit is contained in:
Mike Jolley 2016-03-10 12:21:27 +00:00
commit b4f4e3c7ab
1 changed files with 2 additions and 0 deletions

View File

@ -2020,6 +2020,8 @@ class WC_AJAX {
}
}
}
$found_customers = apply_filters( 'woocommerce_json_search_found_customers', $found_customers );
wp_send_json( $found_customers );
}