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/
Related
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.
I'm using opencart version 2.1.0.1
I want to find the files related to confirmation email in opencart.
I don't know if the core files were changed but the confirmation email for orders, suddenly stopped working. Both the store owner and the customer don't receive them.
Can anyone give me the names of the files related to confirmation email, so that I can replace them with the original ones ?
You can find the file at below location:
your_project\catalog\model\checkout\order.php
The email code is at the last of the confirm function.
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/
I'm making a WordPress site for a client which will be on a subdomain of their main URL. They will give the URL to members of the press, who can browse (watermarked) images, add them to their cart, and checkout, giving only their e-mail address, name and who they write for. They then receive a zip with their files in.
I thought Woocommerce would be great for this, as it allows my client to add new images and remove older ones, and they will receive an e-mail every time someone has downloaded an image, which is part of the brief.
The only problem I can foresee with this is that the user will have to input payment details on checkout, which my client won't accept.
Can anyone think of a good solution for this please? Very much appreciated.
I'm developing a magento module and I need to get the sales email order copy field in Magento. How can access to the copy email field programmatically?
I know this was asked long ago, just want to leave information for someone else having same question.
Mage::getStoreConfig('sales_email/order/copy_to');
If you have multiple email addresses you should split them, and turn them into array before passing on to sendTransactional.