Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shameemreza/222a5e6b36f380d63cd566e72a3b323b to your computer and use it in GitHub Desktop.
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/)
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