Title: Remove email from invoice
Last modified: July 13, 2021

---

# Remove email from invoice

 *  Resolved [nikeri](https://wordpress.org/support/users/nikeri/)
 * (@nikeri)
 * [5 years ago](https://wordpress.org/support/topic/remove-email-from-invoice/)
 * Hi,
 * Been trying to remove the customer email from our packing slips/receipts, but
   i cant get it to disappear.
 * function example_removed_email( $fields ) {
    unset( $fields[‘customer_email’]);
   return $fields; } add_filter( ‘wcdn_order_info_fields’, ‘example_removed_email’);
 * Is this correct from FAQ? What is the field that should be used? (“customer_email”)
 * Best Regards

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

 *  Plugin Support [Upendra Kapse](https://wordpress.org/support/users/wpupen/)
 * (@wpupen)
 * [5 years ago](https://wordpress.org/support/topic/remove-email-from-invoice/#post-14659959)
 * Hello,
 * To remove the email address field from the Invoice please use this code snippet:
 *     ```
       /**
        * Add this code snippet in functions.php file of your currently active theme.
        * An example that removes the 'Email' field.
        */
       function example_removed_customer_email( $fields ) {
           unset( $fields['billing_email'] );
           return $fields;
       }
       add_filter( 'wcdn_order_info_fields', 'example_removed_customer_email' );
       ```
   
 * Kind Regards,
    Upendra
 *  Thread Starter [nikeri](https://wordpress.org/support/users/nikeri/)
 * (@nikeri)
 * [5 years ago](https://wordpress.org/support/topic/remove-email-from-invoice/#post-14660233)
 * Thanks, worked like a charm!
 *  Plugin Support [Upendra Kapse](https://wordpress.org/support/users/wpupen/)
 * (@wpupen)
 * [5 years ago](https://wordpress.org/support/topic/remove-email-from-invoice/#post-14662788)
 * Glad to know it worked well 🙂

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

The topic ‘Remove email from invoice’ 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
 * 2 participants
 * Last reply from: [Upendra Kapse](https://wordpress.org/support/users/wpupen/)
 * Last activity: [5 years ago](https://wordpress.org/support/topic/remove-email-from-invoice/#post-14662788)
 * Status: resolved