mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
https://stackoverflow.com/questions/48978475/woocommerce-order-date-time-in-customer-processing-order-email-notification
15 lines
626 B
Text
15 lines
626 B
Text
add_action( 'woocommerce_email_order_details', 'custom_processing_order_notification', 1, 4 );
|
|
function custom_processing_order_notification( $order, $sent_to_admin, $plain_text, $email ) {
|
|
// Only for processing email notifications to customer
|
|
if( ! 'customer_processing_order' == $email->id ) return;
|
|
|
|
$date_modified = $order->get_date_modified();
|
|
$date_paid = $order->get_date_paid();
|
|
|
|
$date = empty( $date_paid ) ? $date_modified : $date_paid;
|
|
|
|
echo sprintf( '<p>Order NO. %s (placed on <time>%s</time>)</p>',
|
|
$order->get_order_number( ),
|
|
$date->date("F j, Y, g:i:s A T")
|
|
);
|
|
}
|