-2

In Woocommerce, once customer place an order, the email notification that is sent has a Payment Instruction from the payment method itself. I would like to move the payment instruction below the order details like:

<p> Order Details </p>
<p> Payment Instruction </p>

How can I move the payment instruction below the order details ?

LoicTheAztec
  • 229,944
  • 23
  • 356
  • 399

1 Answers1

0

Copy plugins/woocommerce/templates/emails/email-order-details.php to your-child-theme/woocommerce/emails/email-order-details.php and find do_action( 'woocommerce_email_before_order_table', $order, $sent_to_admin, $plain_text, $email ); on line number 24 and move it below line number 87 or where you want this to show.

order-email-image

Ranjit
  • 58
  • 7