Title: Admin Order Notes
Last modified: September 19, 2020

---

# Admin Order Notes

 *  [shawnorecchio](https://wordpress.org/support/users/shawnorecchio/)
 * (@shawnorecchio)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/admin-order-notes-2/)
 * Is there a way to add Private Order notes to printable invoice?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Bruno Poock](https://wordpress.org/support/users/bruno-poock/)
 * (@bruno-poock)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/admin-order-notes-2/#post-13428768)
 * I did not understand your question, I have the following problem, when I go to
   print, the product additions are missing from printing
 *  [fernandodenardin](https://wordpress.org/support/users/fernandodenardin/)
 * (@fernandodenardin)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/admin-order-notes-2/#post-13476124)
 * I have the same need to print the Admin Notes with the invoice
 *  [kenil802](https://wordpress.org/support/users/kenil802/)
 * (@kenil802)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/admin-order-notes-2/#post-13769086)
 * Hi [@shawnorecchio](https://wordpress.org/support/users/shawnorecchio/),
 * Extremely sorry for the delay in response.
 * Could you please add the below code in the functions.php file of the active theme
   to show the admin note in the invoices?
 * Code:
    function wcdn_add_admin_notes( $fields, $order ) { $new_fields = array();
   $admin_order_notes = wc_get_order_notes( array( ‘order_id’ => $order->get_id(),));
   foreach( $admin_order_notes as $admin_order_note ) { if ( ‘admin’ === $admin_order_note-
   >added_by ) { $admin_notes[] = $admin_order_note->content; } } if ( $admin_notes){
   $new_fields[‘admin_note’] = array( ‘label’ => ‘Admin Note’, ‘value’ => implode(‘
   <br> ‘ , $admin_notes ) ); } return array_merge( $fields, $new_fields ); } add_filter(‘
   wcdn_order_info_fields’, ‘wcdn_add_admin_notes’, 10, 2 );
 * Do let us know how it goes.
 * Regards,
    Kenil Shah

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Admin Order Notes’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-delivery-notes/assets/icon-256x256.jpg?rev=2829362)
 * [Print Invoice & Delivery Notes for WooCommerce](https://wordpress.org/plugins/woocommerce-delivery-notes/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-delivery-notes/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-delivery-notes/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-delivery-notes/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-delivery-notes/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-delivery-notes/reviews/)

 * 3 replies
 * 4 participants
 * Last reply from: [kenil802](https://wordpress.org/support/users/kenil802/)
 * Last activity: [5 years, 4 months ago](https://wordpress.org/support/topic/admin-order-notes-2/#post-13769086)
 * Status: not resolved