Woocommerce 将订单备注添加到失败的订单管理电子邮件

时间:2021-05-10 17:36:40

标签: php woocommerce

我需要将 woocommerce 中的特定订单注释添加到发送给管理员的失败订单电子邮件中。

我在 functions.php 中使用以下代码,它可以工作 - 除了它将所有评论放在电子邮件中。

我只希望将带有“Error processing payment blah blah blah”字样的注释添加到电子邮件中,例如以下示例:

处理付款时出错。原因:处理器拒绝 - 可能被盗卡

下面是我正在使用的代码 - 我如何让它过滤并只添加那些包含“错误处理付款”文本的笔记而不发送所有评论?

// Add comments to Failed order emails

add_action( 'woocommerce_email_order_meta', 'woo_add_order_notes_to_email', 10, 3 );
function woo_add_order_notes_to_email( $order, $sent_to_admin = true, $plain_text = 
false ) {

// You want to send those only to the Admin
if ( ! $sent_to_admin ) {
    return;
}

// You can also check which email you are sending, by checking the order status
// Optional, comment it out, if not needed
if ( 'failed' != $order->get_status() ) {
    // Will end execution, with everything other than the completed order email.
    return;
}

$notes = array();

$args = array(
    'post_id' => $order->id,
    'approve' => 'approve',
    'type' => '' // You don't need type as orders get only order notes as comments.
);

// Remove the filter excluding the comments from queries
remove_filter( 'comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ) );

// You get all notes for the order /public and private/
$notes = get_comments( $args );

// Add the filter again.
add_filter( 'comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ) );

echo '<h4 style="font-family:Arial,sans-serif;font-size:120%;line-height:110%;color:red;">IMPORTANT Order Notes</h4>';
echo '<ul class="order_notes">';
if ( $notes ) {
    foreach( $notes as $note ) {
        $note_classes = get_comment_meta( $note->comment_ID, 'is_customer_note', true ) ? array( 'customer-note', 'note' ) : array( 'note' );
        ?>
        <li rel="<?php echo absint($note->comment_ID); ?>" class="<?php echo implode(' ', $note_classes); ?>">
            <div class="note_content">
                <?php echo wpautop( wptexturize( wp_kses_post( $note->comment_content ) ) ); ?>
            </div>
        </li>
    <?php
    }
} else {
    echo '<li class="no-order-comment">There are no order notes</li>';
}
echo '</ul>';
}

你能帮忙吗?

1 个答案:

答案 0 :(得分:3)

您可以使用 wc_get_order_notes 函数获取基于特定订单 ID 的所有备注

您需要使用以下键创建一个数组以用作函数参数:

  • limit 作为空字段(无限制)
  • order_id 要获取备注的订单 ID

最后,您可以使用 PHP strpos 函数检查计数是否包含字符串 "Error processing payment"

// Add comments to Failed order emails
add_action( 'woocommerce_email_order_meta', 'woo_add_order_notes_to_email', 10, 4 );
function woo_add_order_notes_to_email( $order, $sent_to_admin, $plain_text, $email ) {

    // You want to send those only to the Admin
    if ( ! $sent_to_admin ) {
        return;
    }

    // You can also check which email you are sending, by checking the order status
    // Optional, comment it out, if not needed
    if ( 'failed' != $order->get_status() ) {
        // Will end execution, with everything other than the completed order email.
        return;
    }

    // Get the admin order notes
    $args = array(
        'limit'    => '',
        'order_id' => $order->get_id(),
    );
    $notes = wc_get_order_notes( $args );

    // If there are no notes
    if ( empty($notes) ) {
        echo '<li class="no-order-comment">There are no order notes</li>';
        return;
    }

    echo '<h4 style="font-family:Arial,sans-serif;font-size:120%;line-height:110%;color:red;">IMPORTANT Order Notes</h4>';
    echo '<ul class="order_notes">';
    foreach( $notes as $note ) {
        // Print only the note containing the string "Error processing payment"
        if ( strpos( $note->content, 'Error processing payment' ) !== false ) {
            $note_classes = $note->customer_note ? array( 'customer-note', 'note' ) : array( 'note' );
            ?>
            <li rel="<?php echo absint($note->id); ?>" class="<?php echo implode(' ', $note_classes); ?>">
                <div class="note_content">
                    <?php echo wpautop( wptexturize( wp_kses_post( $note->content ) ) ); ?>
                </div>
            </li>
            <?php
        }
    }
    echo '</ul>';
}

代码已经过测试并且可以工作。将它添加到您的活动主题的functions.php。