woocommerce_json_search_found_products filter-hookWC 1.0

Usage

add_filter( 'woocommerce_json_search_found_products', 'wp_kama_woocommerce_json_search_found_products_filter' );

/**
 * Function for `woocommerce_json_search_found_products` filter-hook.
 * 
 * @param  $products 
 *
 * @return 
 */
function wp_kama_woocommerce_json_search_found_products_filter( $products ){

	// filter...
	return $products;
}
$products
-

Where the hook is called

WC_AJAX::json_search_products()
woocommerce_json_search_found_products
woocommerce/includes/class-wc-ajax.php 1682
wp_send_json( apply_filters( 'woocommerce_json_search_found_products', $products ) );

Where the hook is used in WooCommerce

Usage not found.