在WooCommerce中,我有一个自定义产品字段"时间" 我想要在结帐时输出字段的值,特别是在产品详细信息中,产品名称,如下所示:Event time: (value from wcv_custom_product_field)
我试过放置:
add_filter( 'woocommerce_get_item_data', 'wc_checkout_producttime', 10, 2 );
function wc_checkout_producttime( $other_data, $cart_item )
{
$_product = $cart_item['data'];
$other_data[] = array( 'name' => 'wcv_custom_product_field', 'value' => $_product->get_wcv_custom_product_field() );
return $other_data;
}
但是我在结帐时得到了空白页。
我做错了什么以及如何解决这个问题?
感谢。
答案 0 :(得分:2)
这是一个隐藏在 woocommerce_get_item_data
过滤器挂钩中的自定义功能,它会在购物车和结帐项目中显示您的产品自定义字段:
add_filter( 'woocommerce_get_item_data', 'display_custom_product_field_data', 10, 2 );
function display_custom_product_field_data( $cart_data, $cart_item ) {
// Define HERE your product custom field meta key <== <== <== <== <==
$meta_key = 'wcv_custom_product_field';
$product_id = $cart_item['product_id'];
$meta_value = get_post_meta( $product_id, $meta_key, true );
if( !empty( $cart_data ) )
$custom_items = $cart_data;
if( !empty($meta_value) ) {
$custom_items[] = array(
'key' => __('Event time', 'woocommerce'),
'value' => $meta_value,
'display' => $meta_value,
);
}
return $custom_items;
}
代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。
此代码经过测试并有效。