douyou7797 2018-05-28 13:51
浏览 24
已采纳

在WooCommerce电子邮件中显示基于产品类别的自定义文本

I'm trying to display some "conditional" custom text on the "Order Complete" email, which is sent to the customers when an order is marked as completed. I have used the following code.

Now, I want to make this code conditional, so this code should only be active for the "Gift" Category products. I couldn't find any appropriate Woocommerce functions for this particular functionality.

Any help would be appreciated.

This is what I have for now:

add_action( 'woocommerce_email_before_order_table', 
'bbloomer_add_content_specific_email', 20, 4 );

function bbloomer_add_content_specific_email( $order, $sent_to_admin, $plain_text, $email ) {
    if ( $email->id == 'customer_completed_order' ) {
        echo '<p class="email-text-conditional">Thank you for your order with Adventure Clues, we have sent your recipient the gift card’</p>';
    }
}
  • 写回答

1条回答 默认 最新

  • dpqjvoq9033 2018-05-28 14:35
    关注

    Try the following:

    add_action( 'woocommerce_email_before_order_table', 'email_before_order_table_conditional_display', 20, 4 );
    function email_before_order_table_conditional_display( $order, $sent_to_admin, $plain_text, $email ) {
        // Only for "commpeted" order status notification
        if ( 'customer_completed_order' !== $email->id ) return;
    
        foreach( $order->get_items() as $item ){
            if( has_term( "Gifts", "product_cat", $item->get_product_id() ) ){
                echo '<p class="email-text-conditional">Thank you for your order with Adventure Clues, we have sent your recipient the gift card.</p>';
                break;
            }
            if( has_term( "Clothes", "product_cat", $item->get_product_id() ) ){
                echo '<p class="email-text-conditional">Thank you for your order with Adventure Clues, we are managing your Clothes.</p>';
                break;
            }
        }
    }
    

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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看