woocommerce_product_import_image_separator filter-hookWC 1.0

Usage

add_filter( 'woocommerce_product_import_image_separator', 'wp_kama_woocommerce_product_import_image_separator_filter' );

/**
 * Function for `woocommerce_product_import_image_separator` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_woocommerce_product_import_image_separator_filter( $string ){

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

Where the hook is called

WC_Product_CSV_Importer::parse_images_field()
woocommerce_product_import_image_separator
woocommerce/includes/import/class-wc-product-csv-importer.php 559
$separator = apply_filters( 'woocommerce_product_import_image_separator', ',' );

Where the hook is used in WooCommerce

Usage not found.