Advertisement
retoo

Zeige Zahlungsart in der Woocommerce Admin E-Mail

Mar 15th, 2021
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_action( 'woocommerce_email_after_order_table', 'add_payment_method_to_admin_new_order', 15, 2 );
  2. function add_payment_method_to_admin_new_order( $order, $is_admin_email ) {
  3.   if ( $is_admin_email ) {
  4.     echo '<p><strong>Payment Method:</strong> ' . $order->payment_method_title . '</p>';
  5.   }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement