woocommerce_product_importer_formatting_callbacks filter-hookWC 1.0

Usage

add_filter( 'woocommerce_product_importer_formatting_callbacks', 'wp_kama_woocommerce_product_importer_formatting_callbacks_filter', 10, 2 );

/**
 * Function for `woocommerce_product_importer_formatting_callbacks` filter-hook.
 * 
 * @param  $callbacks 
 * @param  $that      
 *
 * @return 
 */
function wp_kama_woocommerce_product_importer_formatting_callbacks_filter( $callbacks, $that ){

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

Where the hook is called

WC_Product_CSV_Importer::get_formatting_callback()
woocommerce_product_importer_formatting_callbacks
woocommerce/includes/import/class-wc-product-csv-importer.php 823
return apply_filters( 'woocommerce_product_importer_formatting_callbacks', $callbacks, $this );

Where the hook is used in WooCommerce

Usage not found.