woocommerce_product_importer_time_exceeded filter-hookWC 1.0

Usage

add_filter( 'woocommerce_product_importer_time_exceeded', 'wp_kama_woocommerce_product_importer_time_exceeded_filter' );

/**
 * Function for `woocommerce_product_importer_time_exceeded` filter-hook.
 * 
 * @param  $return 
 *
 * @return 
 */
function wp_kama_woocommerce_product_importer_time_exceeded_filter( $return ){

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

Where the hook is called

WC_Product_Importer::time_exceeded()
woocommerce_product_importer_time_exceeded
woocommerce/includes/import/abstract-wc-product-importer.php 767
return apply_filters( 'woocommerce_product_importer_time_exceeded', $return );

Where the hook is used in WooCommerce

Usage not found.