Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Created February 21, 2024 10:30
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 dennisnissle/7627484c83e737f67195f33584a5ab09 to your computer and use it in GitHub Desktop.
Save dennisnissle/7627484c83e737f67195f33584a5ab09 to your computer and use it in GitHub Desktop.
Change email customer title to company name
<?php
add_filter( 'woocommerce_gzd_email_title', function( $email_title, $order ) {
$email_title = 'Hallo ' . $order->get_billing_company();
return $email_title;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment