Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Created August 15, 2025 07:19
Show Gist options
  • Select an option

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

Select an option

Save dennisnissle/a779579a38e58c7f9eaf2c5a72e718b6 to your computer and use it in GitHub Desktop.
Adjust invoice email address
<?php
add_filter( 'storeabill_woo_order_email', function( $billing_email, $invoice_order ) {
$wc_order = $invoice_order->get_order();
return $billing_email;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment