Created
March 4, 2025 05:17
-
-
Save shameemreza/222a5e6b36f380d63cd566e72a3b323b to your computer and use it in GitHub Desktop.
Disable the Default WooCommerce Gift Card Email (https://woocommerce.com/products/gift-cards/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_email_classes', function( $emails ) { | |
if ( isset( $emails['WC_GC_Email_Gift_Card_Received'] ) ) { | |
unset( $emails['WC_GC_Email_Gift_Card_Received'] ); | |
} | |
return $emails; | |
}, 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment