woocommerce_order_note_class, array_filter( $note_classes
woocommerce_order_note_class, array_filter( $note_classes
Appears in: woocommerce.11.0.0
Hook Type: filter
Displaying hooks found in version: woocommerce.11.0.0apply_filters('woocommerce_order_note_class, array_filter( $note_classes') is found 1 times:
- /includes/class-wc-ajax.php line 1734
} $note_classes = array( 'note' ); $note_classes[] = $is_customer_note ? 'customer-note' : ''; $note_classes = apply_filters( 'woocommerce_order_note_class', array_filter( $note_classes ), $note ); ?> <li rel="<?php echo absint( $note->id ); ?>" class="<?php echo esc_attr( implode( ' ', $note_classes ) ); ?>"> <div class="note_content"> <?php if ( $is_customer_note ) : ?> <div class="note_header"><?php esc_html_e( 'Sent to customer', 'woocommerce' ); ?></div> <?php endif; ?>