pre_get_product_search_form
Usage
add_action( 'pre_get_product_search_form', 'wp_kama_pre_get_product_search_form_action' );
/**
* Function for `pre_get_product_search_form` action-hook.
*
* @return void
*/
function wp_kama_pre_get_product_search_form_action(){
// action...
}Where the hook is called
pre_get_product_search_form
woocommerce/includes/wc-template-functions.php 3285
do_action( 'pre_get_product_search_form' );