woocommerce_product_importer_before_set_parsed_data action-hookWC 1.0

Usage

add_action( 'woocommerce_product_importer_before_set_parsed_data', 'wp_kama_woocommerce_product_importer_before_set_parsed_data_action', 10, 2 );

/**
 * Function for `woocommerce_product_importer_before_set_parsed_data` action-hook.
 * 
 * @param  $row         
 * @param  $mapped_keys 
 *
 * @return void
 */
function wp_kama_woocommerce_product_importer_before_set_parsed_data_action( $row, $mapped_keys ){

	// action...
}
$row
-
$mapped_keys
-

Where the hook is called

WC_Product_CSV_Importer::set_parsed_data()
woocommerce_product_importer_before_set_parsed_data
woocommerce/includes/import/class-wc-product-csv-importer.php 1035
do_action( 'woocommerce_product_importer_before_set_parsed_data', $row, $mapped_keys );

Where the hook is used in WooCommerce

Usage not found.