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/76658045/woocommerce-add-if-customer-is-guest-to-new-order-emails
8 lines
336 B
Text
8 lines
336 B
Text
add_action( 'woocommerce_email_customer_details', 'add_guest_label_to_email', 5, 4 );
|
|
function add_guest_label_to_email( $order, $sent_to_admin, $plain_text, $email ) {
|
|
// Check if customer is a guest
|
|
if ( ! $order->get_user_id() ) {
|
|
$guest_label = '<p><strong>Guest</strong></p>';
|
|
echo $guest_label;
|
|
}
|
|
}
|