woocommerce_order_note_class filter-hookWC 1.0

Usage

add_filter( 'woocommerce_order_note_class', 'wp_kama_woocommerce_order_note_class_filter', 10, 2 );

/**
 * Function for `woocommerce_order_note_class` filter-hook.
 * 
 * @param  $array_filter 
 * @param  $note         
 *
 * @return 
 */
function wp_kama_woocommerce_order_note_class_filter( $array_filter, $note ){

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

Where the hook is called

In file: /includes/admin/meta-boxes/views/html-order-notes.php
woocommerce_order_note_class
woocommerce/includes/admin/meta-boxes/views/html-order-notes.php 18
$css_class   = apply_filters( 'woocommerce_order_note_class', array_filter( $css_class ), $note );
woocommerce/includes/class-wc-ajax.php 1559
$note_classes   = apply_filters( 'woocommerce_order_note_class', array_filter( $note_classes ), $note );

Where the hook is used in WooCommerce

Usage not found.