当订单中有缺货商品时,在 WooCommerce 电子邮件通知中显示消息

Display message in WooCommerce email notifications when order has backorder items in it

如果您订单中的几种产品 is/are 缺货,我将尝试在订单确认电子邮件中显示特定消息。

我正在努力获得正确的功能来扫描所有产品并让我的布尔值工作。

我当前的代码:

add_action( 'woocommerce_email_after_order_table', 'backordered_items_checkout_notice_email', 20, 4 );
function backordered_items_checkout_notice_email( $order, $sent_to_admin, $plain_text, $email ) {
  $found2 = false;
  foreach ( $order->get_items() as $item ) {
            if( $item['data']->is_on_backorder( $item['quantity'] ) ) {
            $found2 = true;
            break;
        }
    }

    if( $found2 ) {
        if ( $email->id == 'customer_processing_order' ) {echo ' <strong>'.__('⌛ One or several products are Currently out of stock. <br/>Please allow 2-3 weeks for delivery.', 'plugin-mve').'</strong><br/>';}
    
    }
}

使用此代码,当您单击“订购”时,页面会冻结并且不会发送任何电子邮件。但是我在后台得到订单。

谁能帮我解决一下?

您的代码包含一个严重的未捕获错误,即:调用成员函数 is_on_backorder() on null

以下代码将为 customer_processing_order 电子邮件通知添加消息。另见:

所以你得到:

function action_woocommerce_email_after_order_table( $order, $sent_to_admin, $plain_text, $email ) {
    // Initialize
    $flag = false;
    
    // Target certain email notification
    if ( $email->id == 'customer_processing_order' ) {
        // Iterating through each item in the order
        foreach ( $order->get_items() as $item ) {
            // Get a an instance of product object related to the order item
            $product = $item->get_product();

            // Check if the product is on backorder
            if ( $product->is_on_backorder() ) {
                $flag = true;
                
                // Stop the loop
                break;
            }
        }
        
        // True
        if ( $flag ) {
            echo '<p style="color: red; font-size: 30px;">' . __( 'My message', 'woocommerce' ) . '</p>';
        }
    }
}
add_action( 'woocommerce_email_after_order_table', 'action_woocommerce_email_after_order_table', 10, 4 );