How to check payment method on a WooCommerce order by id?

前端 未结 3 1737
慢半拍i
慢半拍i 2021-02-01 05:57

I want to make some changes if the chosen payment method is COD. On existing WC_Order i have used

($order->payment_method_title == \'Cash On Delivery\' ? ...          


        
3条回答
  •  無奈伤痛
    2021-02-01 06:07

    2019 now, if you want the title of the payment method you can do:

    $order = new WC_Order( $order_id );
    $payment_title = $order->get_payment_method_title();
    

    This returns the string set in the Woocommerce > Payment methods, ex: Paypal.

    Cheers.

提交回复
热议问题