Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Upendra Kapse

    (@wpupen)

    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

    (@grinbin)

    Perfect, this worked for me.

    Many thanks Upendra

    Plugin Support Upendra Kapse

    (@wpupen)

    Hi @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.