在Woocommerce中添加自定义订单状态并发送有关状态更改的电子邮件 [英] Add custom order status and send email on status change in Woocommerce

查看:245
本文介绍了在Woocommerce中添加自定义订单状态并发送有关状态更改的电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的woocommerce网站中添加自定义订单状态.每当状态更改为该自定义状态时,我都要发送邮件.
我已尝试 发送当WooCommerce中的自定义订单状态更改时的电子邮件通知
以及

I want to add custom order status in my woocommerce site.And whenever status changes to that custom status I want to send mail.
I have tried Send an email notification when custom order status changes in WooCommerce
as well as https://github.com/sarun007/custom-email-plugin/tree/master
But didn't worked
I am using woocommerce 3.2.6 version

推荐答案

要使其适用于新的自定义订单状态(此处为等待交货"),您需要:

To make it work for a new custom order status (here "Awaiting delivery") you should need:

  • 首先注册自定义新订单状态
  • 要在管理员订单列表(可选)
  • 上进行批量修改下拉菜单中显示
  • 在订单编辑页面状态下拉列表中显示它
  • 在订单获得此自定义状态时发送自定义的电子邮件通知.
  • to register the custom new order status first,
  • to display it in bulk edit dropdown on admin orders list (optional),
  • to display it in order edit pages status dropdown
  • to send an customized email notification when an order get this custom status.

代码:

// register a custom post status 'awaiting-delivery' for Orders
add_action( 'init', 'register_custom_post_status', 20 );
function register_custom_post_status() {
    register_post_status( 'wc-awaiting-delivery', array(
        'label'                     => _x( 'Awaiting delivery', 'Order status', 'woocommerce' ),
        'public'                    => true,
        'exclude_from_search'       => false,
        'show_in_admin_all_list'    => true,
        'show_in_admin_status_list' => true,
        'label_count'               => _n_noop( 'Awaiting delivery <span class="count">(%s)</span>', 'Awaiting delivery <span class="count">(%s)</span>', 'woocommerce' )
    ) );
}

// Adding custom status 'awaiting-delivery' to order edit pages dropdown
add_filter( 'wc_order_statuses', 'custom_wc_order_statuses', 20, 1 );
function custom_wc_order_statuses( $order_statuses ) {
    $order_statuses['wc-awaiting-delivery'] = _x( 'Awaiting delivery', 'Order status', 'woocommerce' );
    return $order_statuses;
}

// Adding custom status 'awaiting-delivery' to admin order list bulk dropdown
add_filter( 'bulk_actions-edit-shop_order', 'custom_dropdown_bulk_actions_shop_order', 20, 1 );
function custom_dropdown_bulk_actions_shop_order( $actions ) {
    $actions['mark_awaiting-delivery'] = __( 'Mark Awaiting delivery', 'woocommerce' );
    return $actions;
}

// Adding action for 'awaiting-delivery'
add_filter( 'woocommerce_email_actions', 'custom_email_actions', 20, 1 );
function custom_email_actions( $action ) {
    $actions[] = 'woocommerce_order_status_wc-awaiting-delivery';
    return $actions;
}

add_action( 'woocommerce_order_status_wc-awaiting-delivery', array( WC(), 'send_transactional_email' ), 10, 1 );

// Sending an email notification when order get 'awaiting-delivery' status
add_action('woocommerce_order_status_awaiting-delivery', 'backorder_status_custom_notification', 20, 2);
function backorder_status_custom_notification( $order_id, $order ) {
    // HERE below your settings
    $heading   = __('Your Awaiting delivery order','woocommerce');
    $subject   = '[{site_title}] Awaiting delivery order ({order_number}) - {order_date}';

    // Getting all WC_emails objects
    $mailer = WC()->mailer()->get_emails();

    // Customizing Heading and subject In the WC_email processing Order object
    $mailer['WC_Email_Customer_Processing_Order']->heading = $heading;
    $mailer['WC_Email_Customer_Processing_Order']->subject = $subject;

    // Sending the customized email
    $mailer['WC_Email_Customer_Processing_Order']->trigger( $order_id );
}

代码进入您的活动子主题(或活动主题)的function.php文件中.

Code goes in function.php file of your active child theme (or active theme).

经过测试并可以使用(应在2.5以上的Woocommerce版本上使用)

在其他功能中,如果您使用WC_Order方法update_status()将订单更改为等待交货"状态,例如:

In others function if you use the WC_Order method update_status() to change an order to 'awaiting-delivery' status like:

$order->update_status();

相关的电子邮件通知也将发送.

这篇关于在Woocommerce中添加自定义订单状态并发送有关状态更改的电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆