Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 4 years ago.
Improve this questionI need to create manual orders for the customers in the woocommere --> orders section and send them the link for payments.
The issue is that when i create the order, there is no option to save it. The order action requires the email confirmation to be sent to the user for me to save the order.
I have disabled the email notification from Woocommerce --> Settings --> emails --> Processing order but the "Customer invoice/ order details" don't have an option to remove the notification.
I want to find a way where I can save the order but not send the email to the customer (instead i will send them a custom email with the order payment link)
any ideas?
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 4 years ago.
Improve this questionI need to create manual orders for the customers in the woocommere --> orders section and send them the link for payments.
The issue is that when i create the order, there is no option to save it. The order action requires the email confirmation to be sent to the user for me to save the order.
I have disabled the email notification from Woocommerce --> Settings --> emails --> Processing order but the "Customer invoice/ order details" don't have an option to remove the notification.
I want to find a way where I can save the order but not send the email to the customer (instead i will send them a custom email with the order payment link)
any ideas?
Share Improve this question asked Jan 6, 2021 at 19:54 internal Projectinternal Project 31 bronze badge 1- WooCommerce dev support and 3rd party plugin/theme dev support are off topic on this stack, and not in our scope. This is not a place to get help with WooCommerce. You should go to the official support routes or ask in a WooCommerce community. – Tom J Nowell ♦ Commented Jan 6, 2021 at 20:56
1 Answer
Reset to default 0I won't go in code details, but I would consider two different strategies among many others:
- using a custom query using WPDB class, based on WooCommerce queries;
- unhook all undesired filters and actions from WordPress, WooCommerce and other plugins.
I would probably start with the second one.