Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Created November 4, 2025 10:15
Show Gist options
  • Select an option

  • Save dennisnissle/4f6e4188ad29a954b7b7ba5594921d17 to your computer and use it in GitHub Desktop.

Select an option

Save dennisnissle/4f6e4188ad29a954b7b7ba5594921d17 to your computer and use it in GitHub Desktop.
Send paid for order mail for invoice gateway too
<?php
add_filter( 'woocommerce_gzd_disable_gateways_paid_order_email', function( $gateways ) {
$gateways = array_diff( $gateways, array( 'invoice' ) );
return $gateways;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment