我有一个Woocommerce产品的自定义字段,我想在电子邮件中显示它的价值。
当我使用自定义产品提交表单时,我在下面的自定义字段中添加了此代码以创建自定义字段:
<?php
WCVendors_Pro_Form_Helper::select( array(
'post_id' => $object_id,
'class' => 'select2',
'id' => 'wcv_custom_product_ingredients',
'label' => __( 'What time?', 'wcvendors-pro' ),
'placeholder' => __( 'Pick a time', 'wcvendors-pro' ),
'wrapper_start' => '<div class="all-100">',
'wrapper_end' => '</div>',
'desc_tip' => 'true',
'description' => __( 'Pick a time', 'wcvendors-pro' ),
'options' => array( '12:00 midnight' => __('12:00 midnight', 'wcv_custom_product_ingredients'), '12:15 midnight'=> __('12:15 midnight', 'wcv_custom_product_ingredients') )
) );
?>
我也尝试将下面的代码添加到functions.php中,但这只显示“几点?”没有价值的电子邮件......
add_action('woocommerce_email_after_order_table', 'wcv_ingredients_email');
function wcv_ingredients_email() {
$output = get_post_meta( get_the_ID(), 'wcv_custom_product_ingredients', true );
echo 'What time? ' . $output . '<br>';
}
可能是什么问题?
答案 0 :(得分:3)
您正在使用正确的钩子,但是您只是忘记了钩子函数中的钩子参数。
此外,当您定位产品自定义字段值时,并且在订单中您可以包含许多商品(产品),下面的代码将为每个订单商品显示此值。
尝试以下代码,现在可以使用:
// Tested on WooCommerce version 2.6.x and 3+ — For simple products only.
add_action('woocommerce_email_after_order_table', 'wcv_ingredients_email', 10, 4);
function wcv_ingredients_email( $order, $sent_to_admin, $plain_text, $email ){
foreach($order->get_items() as $item_values){
// Get the product ID for simple products (not variable ones)
$product_id = $item_values['product_id'];
$output = get_post_meta( $product_id, 'wcv_custom_product_ingredients', true );
echo 'What time? ' . $output . '<br>';
}
}
代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。