woocommerce_cart_item_removed_notice_type filter-hookWC 1.0

Usage

add_filter( 'woocommerce_cart_item_removed_notice_type', 'wp_kama_woocommerce_cart_item_removed_notice_type_filter' );

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

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

Where the hook is called

WC_Form_Handler::update_cart_action()
woocommerce_cart_item_removed_notice_type
woocommerce/includes/class-wc-form-handler.php 653
wc_add_notice( $removed_notice, apply_filters( 'woocommerce_cart_item_removed_notice_type', 'success' ) );

Where the hook is used in WooCommerce

Usage not found.