簡體   English   中英

將自定義字段 (ACF) 添加到 WooCommerce 完成訂單 email 通知

[英]Add custom field (ACF) to WooCommerce completed order email notification

有很多線程處理“WooCommerce 電子郵件中的自定義字段”主題,但我找不到我正在努力解決的確切情況。

我可以實現該項目的 50% 以將字段顯示為訂單表中的元數據。

add_action( 'woocommerce_order_item_meta_end', 'custom_product_info', 20, 4 );
function custom_product_info ( $item_id, $item, $order, $plain_text ) {
    $id = $item->get_product_id();
    $erlebnisidgc = get_field('erlebnis_id',$id);
    if($erlebnisidgc){
        echo "<p>Here's your Link</p><a href=https://b-ceed.de/?eventid='.$erlebnisidgc'>Testlink</a>";
    }
}

因此,此代碼與自定義字段完美配合。 問題是這個 output 不僅顯示在customer_completed_order email 中,而且還顯示在所有其他電子郵件中。

因此,我嘗試了這個代碼片段:

add_action( 'woocommerce_order_item_meta_end', 'custom_product_info', 20, 4 );
function custom_product_info ( $item_id, $item, $order, $plain_text ) {
    if ( $email->id == 'customer_completed_order' ) {
        $id = $item->get_product_id();
        $erlebnisidgc = get_field('erlebnis_id',$id);
        if($erlebnisidgc){
            echo "<p>Here's your Link</p><a href=https://b-ceed.de/?eventid='.$erlebnisidgc'>Testlink</a>";
        }
    }
}

但是現在 output 將不再顯示在任何 email 中,它會觸發內部服務器錯誤。 有什么建議嗎?

$email ( $email->id ) 沒有作為參數傳遞給woocommerce_order_item_meta_end鈎子,因此它是未定義的

因此,要針對特定的 email 通知,需要一種解決方法,這可以通過woocommerce_email_before_order_table鈎子創建一個全局變量來完成

所以你得到:

// Setting global variable
function action_woocommerce_email_before_order_table( $order, $sent_to_admin, $plain_text, $email ) {
    $GLOBALS['email_data'] = array(
        'email_id'  => $email->id, // The email ID (to target specific email notification)
        'is_email'  => true // When it concerns a WooCommerce email notification
    );
}
add_action( 'woocommerce_email_before_order_table', 'action_woocommerce_email_before_order_table', 1, 4 );
 
function action_woocommerce_order_item_meta_end( $item_id, $item, $order, $plain_text ) {
    // Getting the custom 'email_data' global variable
    $ref_name_globals_var = $GLOBALS;
    
    // Isset & NOT empty
    if ( isset ( $ref_name_globals_var ) && ! empty( $ref_name_globals_var ) ) {
        // Isset
        $email_data = isset( $ref_name_globals_var['email_data'] ) ? $ref_name_globals_var['email_data'] : '';
        
        // NOT empty
        if ( ! empty( $email_data ) ) {
            // Target specific emails, several can be added in the array, separated by a comma
            $target_emails = array( 'customer_completed_order' );
            
            // Target specific WooCommerce email notifications
            if ( in_array( $email_data['email_id'], $target_emails ) ) {
                // Get product ID
                $product_id = $item->get_product_id();
                
                // Get field
                $erlebnisidgc = get_field( 'erlebnis_id', $product_id );
                
                // Has some value
                if ( $erlebnisidgc ) {
                    echo '<p>Here is your Link</p>';
                    echo '<a href="https://b-ceed.de/?eventid=' . $erlebnisidgc . '">Testlink</a>';
                }
            }           
        }
    }
}
add_action( 'woocommerce_order_item_meta_end', 'action_woocommerce_order_item_meta_end', 10, 4 );

在這個答案中使用:

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM