2
在WooCommerce中,我有一個自定義產品字段「時間」我希望在結帳時輸出該字段的值,特別是在產品詳細信息中的產品名稱下,像這樣:Event time: (value from wcv_custom_product_field)
在Woocommerce結賬頁上添加其他產品信息
我試過配售:
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;
}
但我發現了在結賬ablank頁面。
我在做什麼錯了,我該如何解決這個問題?
謝謝。