• Hi,

    For an woocommerce online order shop i’m trying to check when a customer pays with ideal or used the payment methode “pay on delivery”.

    When the customer used ideal the message “customer already paid” shown on the new order email.

    When the customer used “pay on delivery” the message “customer must still pay” appears.

    How can i check which payment methode is used?

    Thanks in advance

Viewing 1 replies (of 1 total)
  • Thread Starter Chrissiechris

    (@chrissiechris)

    Something like this.

    add_action( 'woocommerce_email_after_order_table', 'add_payment_method_to_admin_new_order', 15, 2 );
    
    function add_payment_method_to_admin_new_order( $order, $is_admin_email ) {
    	if ($order->payment_method == ‘cod’){
        	echo '<p><strong>pay on delivery</strong></p>';
    	}
    }

    Can some one help me to make this work?

    Thanks in advance,

    Chris

Viewing 1 replies (of 1 total)
  • The topic ‘Payment methode check’ is closed to new replies.