P粉7369355872023-08-16 10:40:06
WooCommerce已經有了一堆鉤子,你可以在WooCommerce模板中使用它們,而不是添加自己的鉤子...
良好的開發規則是先使用現有的鉤子。如果沒有方便或可用的鉤子,那麼你可以透過子主題覆蓋WooCommerce模板。為什麼?因為模板有時會更新,然後你需要更新編輯過的模板,而鉤子則不需要。
對於「客戶完成訂單」通知,請使用woocommerce_order_item_meta_end
動作鉤子,如下所示:
// 将email_id设置为全局变量 add_action('woocommerce_email_before_order_table', 'set_email_id_as_a_global', 1, 4); function set_email_id_as_a_global($order, $sent_to_admin, $plain_text, $email = null ){ if ( $email ) { $GLOBALS['email_id_str'] = $email->id; } } // 在“客户完成订单”电子邮件通知中显示自定义订单项元数据 add_action( 'woocommerce_order_item_meta_end', 'custom_email_order_item_meta', 10, 2 ); function custom_email_order_item_meta( $item_id, $item ){ // 获取email ID全局变量 $refGlobalsVar = $GLOBALS; $email_id = isset($refGlobalsVar['email_id_str']) ? $refGlobalsVar['email_id_str'] : null; // 仅适用于“客户完成订单”电子邮件通知 if ( ! empty($email_id) && 'customer_completed_order' === $email_id ) { bis_show_kit_meta_contents( $item->get_product_id() ); } }
這將允許你只在「客戶完成訂單」通知中顯示自訂元資料。
或者,你可以將鉤子替換為具有相同函數變數參數的woocommerce_order_item_meta_start
。
將程式碼放在你的子主題的functions.php檔案中或外掛中。