I am working with Woocommerce and I am about to make the order confirmation email.
It want the mail to say:
“Hi [customers name]”
How do you get Woocommerce to print the customers name?
I am working with Woocommerce and I am about to make the order confirmation email.
It want the mail to say:
“Hi [customers name]”
How do you get Woocommerce to print the customers name?
You must be logged in to post a comment.
You need the order object, so depending on what hook you are using it should be there. Try something like this:
This is untested but should get you started
As of WooCommerce 3.x the
$order
object’s properties should not be accessed directly as suggested in the previous answers. The proper way is now:Here’s my starter example of getting a bunch of the WooCommerce customer info inside a
WP_Query
loop:Hopefully this will be helpful for someone else.
you can get customer data from
$order
object, something like this.