dsznndq4912405 2017-04-22 20:26
浏览 70
已采纳

将产品说明添加到WooCommerce电子邮件通知中

How to add product description/content of single product page (not the short description) to WooCommerce new order email notification?

I need to know specific written description of my products as most of them are almost same.

  • 写回答

1条回答 默认 最新

  • dsbj66959 2017-04-23 01:17
    关注

    As you are targeting a specific email notification, first we need to get the Email ID to target the "New Order" email notification. The only way is to get it before and to set the value in a global variable.

    Then in a custom function hooked in woocommerce_order_item_meta_end action hook, we display the product description exclusively for New Order email notification.

    Here is that code:

     ## Tested on WooCommerce 2.6.x and 3.0+
    
    // Setting the email_is as a global variable
    add_action('woocommerce_email_before_order_table', 'the_email_id_as_a_global', 1, 4);
    function the_email_id_as_a_global($order, $sent_to_admin, $plain_text, $email ){
        $GLOBALS['email_id_str'] = $email->id;
    }
    
    // Displaying product description in new email notifications
    add_action( 'woocommerce_order_item_meta_end', 'product_description_in_new_email_notification', 10, 4 );
    function product_description_in_new_email_notification( $item_id, $item, $order = null, $plain_text = false ){
    
        // Getting the email ID global variable
        $refNameGlobalsVar = $GLOBALS;
        $email_id = $refNameGlobalsVar['email_id_str'];
    
        // If empty email ID we exit
        if(empty($email_id)) return;
    
        // Only for "New Order email notification"
        if ( 'new_order' == $email_id ) {
    
            if( version_compare( WC_VERSION, '3.0', '<' ) ) { 
                $product_id = $item['product_id']; // Get The product ID (for simple products)
                $product = wc_get_product($item['product_id']); 
            } else {
                $product = $item->get_product();
    
                if( $product->is_type('variation') ) {
                    $product = wc_get_product( $item->get_product_id() );
                }
            }
    
            // Get the Product description (WC version compatibility)
            if ( method_exists( $item['product'], 'get_description' ) ) {
                $product_description = $product->get_description(); // for WC 3.0+ (new)
            } else {
                $product_description = $product->post->post_content; // for WC 2.6.x or older
            }
    
            // Display the product description
            echo '<div class="product-description"><p>' . $product_description . '</p></div>';
        }
    }
    

    This code goes in function.php file of your active child theme (or theme) or also in any plugin file.

    This code is tested and works.

    Code Update and Error explanations in woocommerce_order_item_meta_end action hook:

    PHP Warning for woocommerce_order_item_meta_end (Mike Joley)

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

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题