I'm sure this is something very simple to do, but I just can't figure it out.
My questions concerns the WooCommerce booking confirmation email that is being sent to the admin. I would like it to contain all of the customer information including address and meta.
Does anyone know how to pull the info into the email?
Read this, you will find the answer : https://www.sellwithwp.com/customizing-woocommerce-order-emails/
Related
My customers can not complete downloadable orders by WooCommerce. System is requesting email address despite it is already fulfill. How can I fix it?
rejection message: Please, fill email address
Please check that particular product features maybe it is only "downloadable". It also should be "virtual". Just one tick and go.
Source: https://docs.woocommerce.com/document/woocommerce-order-status-control/
I need first name in email new account template [woocommerce]
my code -> https://pastebin.com/iTfM6Nmz
WooCommerce doesn't have this functionality built in. The new account email can be sent before an order is placed, which would mean it's before any user information has been captured like first name.
After an order has been placed and you have billing information, then you could pull it in with something like
"Hi" . $order->billing_first_name . "Your recent order on"
But that would be on order confirmation emails, or anything after account creation.
You could also check out this thread: https://wordpress.org/support/topic/how-to-add-customer-name-to-new-customer-admin-order-email/
It's essentially recommending the Follow Up Emails extension to help customize emails. Again it will struggle if the user hasn't added their account information when they register, though, so you might want to look for a way to require filling in WooCommerce user information during registration, assuming it's separate from the purchase flow.
Developing a site in wordpress and I'm using WooCommerce.
When an order is placed the siteadmin (me) and the customer are receiving an email.
The email subject field and the email header (in the message body) are properly filled in.
However when an order is complete the subject field and the email header remains empty. Of course I have filled out the settings form for this email template.
See images below.
Any idea what I'm doing wrong? Please advice.
I don't know how it went but suddenly, this morning it is working. As far as I know I didn't change anything. Happy it works..... thanks.
I am using the magento OAuth to get the customer information. Right now i am able to get customer list and customer information by "customerId" . Reference link
Can i get the customer information by email id ?
I think I just figured it out...
GET /api/rest/customers/?filter[0][attribute]=email&filter[0][in][0]=my.email#address.de HTTP/1.1
This filters my customers using the email address submitted. Further information about GET-Request filtering you can find here:
http://www.magentocommerce.com/api/rest/get_filters.html
I am creating a plugin, in which I send newsletters to subscribed users. To do this, I first created a form, in which users enter their email-id, and been subscribed. After subscribing, they got an email for confirming their email-id. Here is the problem arise.
To confirm, I send them a link for confirming their email id as following:
http://localhost/wordpress/wp-content/plugins/my-plugin-path/templates/subscribe.php?id=53cad9f23a6ec
While I have to send them the link as following:
http://localhost/wordpress/newsletter/confirmation/53cad9f23a6ec
So how it can be done. Please help me. Any help would be appreciated. Thank you.