621 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
6
replies
110
views
Duplicate custom Order Action in WooCommerce
I have the following code on my site which sends a 'Ready to Collect' email to my customers, as well as updating the order status to ready to collect.
function custom_status_action( $actions ) {
...
0
votes
1
answer
84
views
Error while Sending mail notification through community.general.mail ansible module
When i am trying to send email to single/multiple users I get the following error:
"msg": "kerberos: authGSSClientStep() failed:
localhost is ansible node and remote server is a ...
0
votes
1
answer
62
views
Sending an email notification when a user role is approved in Wordpress
I try to send an email notification when a user which asked for "pro" role is validated by the admin.
Note that the user has already received a pending email notification from another plugin....
1
vote
1
answer
61
views
WooCommerce New Order email recipient based on Customer Billing State
I adapted an old snippet (2 Years) code found on Business Bloomer to redirect a new order email notification based on the customer country, to fit my need of redirect it to a couple of people, one the ...
2
votes
1
answer
172
views
How to display order total in WooCommerce email notifications
In the context of making a B2B platform only based on a wordpress ecommerce website, I need to change the email sent to customers after placing an order by removing the list of items ordered as this ...
1
vote
1
answer
286
views
How to perform an action after a hangfire background job fails and exhaust its max number of retries
I have an operation being performed as Hangfire background job like this:
var jobId = BackgroundJob.Enqueue(() => PerformActionA(param1, param2));
If the job with jobId gets failed and made max ...
1
vote
1
answer
411
views
Getting 'unknown sender' notification when creating google calendar event via service account
Getting 'unknown sender' notification when creating google calendar event via service account
const auth = new GoogleAuth({
scopes: [
'https://www.googleapis.com/auth/calendar',
'https://www....
0
votes
1
answer
118
views
Use WooCommerce account name and email instead of billing name and email for invoices and email notifications
I want to use the WordPress account User Name on the customer emails and admin order notifications instead of the Billing Name.
Our use case is that employees are enrolling for an online course. They ...
1
vote
1
answer
148
views
Send an email notification for orders with pending payments
I use the following code to send an admin email when the order status changes from pending to cancelled.
add_action('woocommerce_order_status_pending_to_cancelled', '...
0
votes
0
answers
66
views
sending custom email to customers after a configured time from the order procced time
I'm attempting to configure a plugin that sends an email to the customer after they place or complete an order. The plugin should send a custom email after a specified time, but for some reason, the ...
1
vote
1
answer
55
views
Add attendees emails as CC for WooCommerce processing and completed email notifications
I'm currently trying to add emails from my custom checkout field to the list of cc recipients for processing and completed order emails.
I have used this code for creating repeating sets of custom ...
2
votes
1
answer
182
views
Add a column to show order item price excl. tax in Woocommerce email notifications
I have been trying to find a way to add the price excluding taxes for each item in an additional column on the new order email notification.
This is what is currently shown:
and this is what I'm ...
-1
votes
1
answer
113
views
Hide "Backordered" item metadata from customer Orders and Email notifications in WooCommerce
Currently, have the WooCommerce Backorder feature enabled, but would like to remove form notifications 'Backordered: 1' from the WooCommerce Orders Panel, all email notifications, receipts, delivery ...
1
vote
1
answer
93
views
Change CSS Only for WooCommerce New Order Notification sent to Admins
I want to change the header table design on new order notifications only for my admins. Customer emails should be unaffected. The code I have is below but it does not seem to want to work. Any help ...
1
vote
2
answers
142
views
Add order item price per kilo in WooCommerce New Order notification
I want to add the price per kilogram of an item to the admin-new-order.php template. I've managed to get the weight and quantity and to echo it (see "104" in screenshot) in the admin-new-...