我有這個功能,可以將自訂元欄位新增到所有 WooCommerce 電子郵件中的產品詳細資訊中。但我只需要在訂單付款後顯示(這也可以只是「已完成」電子郵件)。
add_action( 'woocommerce_order_item_meta_start', 'email_confirmation_display_order_items', 10, 3 ); function email_confirmation_display_order_items( $item_id, $item, $order ) { // On email notifications for line items if ( ! is_wc_endpoint_url() && $item->is_type('line_item') ) { $ot_address = get_post_meta( $item->get_product_id(), 'ot_address', true ); if ( ! empty($ot_address) ) { printf( '<div>' . __("Terms: %s", "woocommerce") . '</div>', $ot_address ); } } }
我希望可以將它嵌套在 if ( $email->id == 'customer_completed_order' ) {}
內,所以最終的程式碼將如下所示:
add_action( 'woocommerce_order_item_meta_start', 'email_confirmation_display_order_items', 10, 3 ); function email_confirmation_display_order_items( $item_id, $item, $order ) { if ( $email->id == 'customer_completed_order' ) { // On email notifications for line items if ( ! is_wc_endpoint_url() && $item->is_type('line_item') ) { $ot_address = get_post_meta( $item->get_product_id(), 'ot_address', true ); if ( ! empty($ot_address) ) { printf( '<div>' . __("Terms: %s", "woocommerce") . '</div>', $ot_address ); } } } }
但在更改後它就停止工作了。有什麼建議嗎?
P粉0142937382024-01-09 18:05:49
如您在程式碼嘗試中看到的,$email
不是 woocommerce_order_item_meta_start
掛鉤的一部分。因此,要定位某些 WooCommerce 電子郵件通知,您需要解決方法。
步驟 1) 透過另一個僅適用於 WooCommerce 電子郵件通知的鉤子建立並新增全域變數。
// Setting global variable function action_woocommerce_email_before_order_table( $order, $sent_to_admin, $plain_text, $email ) { $GLOBALS['email_id'] = $email->id; } add_action( 'woocommerce_email_before_order_table', 'action_woocommerce_email_before_order_table', 1, 4 );
步驟 2) 在掛鉤 woocommerce_order_item_meta_start
中,使用全域變量,以便我們可以定位某些 WooCommerce 電子郵件通知
function action_woocommerce_order_item_meta_start( $item_id, $item, $order, $plain_text ) { // On email notifications for line items if ( ! is_wc_endpoint_url() && $item->is_type('line_item') ) { // Getting the email ID global variable $ref_name_globals_var = isset( $GLOBALS ) ? $GLOBALS : ''; $email_id = isset( $ref_name_globals_var['email_id'] ) ? $ref_name_globals_var['email_id'] : ''; // NOT empty and targeting specific email. Multiple statuses can be added, separated by a comma if ( ! empty ( $email_id ) && in_array( $email_id, array( 'new_order', 'customer_completed_order' ) ) ) { // Get meta $ot_address = get_post_meta( $item->get_product_id(), 'ot_address', true ); // OR use to get meta // $ot_address = $item->get_meta( 'ot_address' ); if ( ! empty( $ot_address ) ) { printf( '' . __( 'Terms: %s', 'woocommerce' ) . '', $ot_address ); } } } } add_action( 'woocommerce_order_item_meta_start', 'action_woocommerce_order_item_meta_start', 10, 4 );