Skip to content

Instantly share code, notes, and snippets.

@DustinHartzler
Created September 4, 2018 15:55
Show Gist options
  • Save DustinHartzler/35b1974f8fedd5d99eabeaf5e9f8369d to your computer and use it in GitHub Desktop.
Save DustinHartzler/35b1974f8fedd5d99eabeaf5e9f8369d to your computer and use it in GitHub Desktop.
Pass details to Stripe Receipt
// Pass details to Stripe so Stripe receipts are triggered
add_filter( 'wc_stripe_send_stripe_receipt', 'wc_trigger_stripe_receipts' );
function wc_trigger_stripe_receipts() {
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment