Echo message based on payment method (WooCommerce)

2019-09-25 07:14发布

问题:

I’d like to show a message on the thankyou page, based on the customer’s payment method.

So if the customer paid with paypal, the message “Thanks for ordering with paypal” will appear on the order received page.

回答1:

WC versions > 2.6 already does this by default. Look at the thankyou.php WC template file and you'll see L56 uses <?php echo $order->payment_method_title; ?> to echo the payment method.