Created
September 4, 2018 15:55
-
-
Save DustinHartzler/35b1974f8fedd5d99eabeaf5e9f8369d to your computer and use it in GitHub Desktop.
Pass details to Stripe Receipt
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
// 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