Skip to content

Instantly share code, notes, and snippets.

@ChromeOrange
Last active October 2, 2018 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChromeOrange/5b5d8f6c07542b57047d81dbc4fe59bd to your computer and use it in GitHub Desktop.
Save ChromeOrange/5b5d8f6c07542b57047d81dbc4fe59bd to your computer and use it in GitHub Desktop.
Only create Invoice, don't send email as well
add_filter( 'pdf_invoice_bulk_send_invoice', 'remove_pdf_invoice_bulk_send_invoice' );
function remove_pdf_invoice_bulk_send_invoice() {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment