Skip to content

Instantly share code, notes, and snippets.

View ecairol's full-sized avatar

Esteban Cairol ecairol

  • Costa Rica
View GitHub Profile
@KeylorCR
KeylorCR / wc-remove-address-pickup-store.php
Last active July 15, 2024 18:17
Remove woocommerce email addresses on wc_pickup_store shipping method
<?php
function wc_removing_customer_details_in_emails($order, $sent_to_admin, $plain_text, $email) {
if ($order->has_shipping_method('wc_pickup_store')) {
$mailer = WC()->mailer();
remove_action( 'woocommerce_email_customer_details', array( $mailer, 'email_addresses' ), 20, 3 );
}
}
add_action('woocommerce_email_customer_details', 'wc_removing_customer_details_in_emails', 5, 4);