如果特定元数据具有特定值(Umbrella Hole为“YES”),我想添加一个通知部分来订购发送给管理员的电子邮件。
代码到现在为止:
function add_order_instruction_email($ order,$ …
我已经测试了您的代码,它适用于已注册的订单项元数据 Umbrella Hole ,见下文 wp_woocommerce_order_itemmeta 表 line_item :
Umbrella Hole
wp_woocommerce_order_itemmeta
line_item
所以这个问题只能来自于 的 订单项未注册的自定义元数据 强>
我轻轻地重温了你的代码:
add_action( 'woocommerce_email_order_details', 'add_order_instruction_email', 10, 4 ); function add_order_instruction_email( $order, $sent_to_admin, $plain_text, $email ) { // Loop through order items foreach ( $order->get_items() as $item ) { if ( "Yes" == $item->get_meta('Umbrella Hole') ) { echo '<div style="background-color:antiquewhite;padding:5px;margin-bottom:10px;"><strong><span style="color:red;">Note:</span></strong> Umbrella Hole is present in the order. Please make sure velcro zipper split is requested from supplier too.</div>'; $break; // Stop the loop to avoid repetitions } } }
代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。
下面是任何订单行项目具有已注册元数据时的电子邮件通知 Umbrella Hole 同 "yes" 作为价值:
"yes"