Heim > Fragen und Antworten > Hauptteil
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文件中或插件中。