Title: Hide payment method from delivery note
Last modified: September 9, 2021

---

# Hide payment method from delivery note

 *  Resolved [grinbin](https://wordpress.org/support/users/grinbin/)
 * (@grinbin)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/hide-payment-method-from-delivery-note/)
 * I’m trying to remove Payment Method from delivery note, is this possible please?

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

 *  Plugin Support [Upendra Kapse](https://wordpress.org/support/users/wpupen/)
 * (@wpupen)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/hide-payment-method-from-delivery-note/#post-14896063)
 * Hello,
 * You can use the following code snippet to remove the payment method field:
 *     ```
       /**
        * Add this code snippet in functions.php file of your currently active theme.
        * An example that removes the 'Payment Method' field.
        */
       function example_removed_payment_method( $fields ) {
           unset( $fields['payment_method'] );
           return $fields;
       }
       add_filter( 'wcdn_order_info_fields', 'example_removed_payment_method' );
       ```
   
 * I hope this helps.
 * Kind Regards,
    Upendra.
 *  Thread Starter [grinbin](https://wordpress.org/support/users/grinbin/)
 * (@grinbin)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/hide-payment-method-from-delivery-note/#post-14905865)
 * Perfect, this worked for me.
 * Many thanks Upendra
 *  Plugin Support [Upendra Kapse](https://wordpress.org/support/users/wpupen/)
 * (@wpupen)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/hide-payment-method-from-delivery-note/#post-14906829)
 * Hi [@grinbin](https://wordpress.org/support/users/grinbin/), I am glad to know
   that worked well 🙂

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

The topic ‘Hide payment method from delivery note’ 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: [4 years, 10 months ago](https://wordpress.org/support/topic/hide-payment-method-from-delivery-note/#post-14906829)
 * Status: resolved