添加产品('_aggiunte)时,我必须在woocommerce中编辑产品名称,_aggiunte是woocommerce_order_itemmeta选项卡的自定义字段。
我尝试使用此代码,但不发声。
function woocommerce_new_order_item_add_aggiunte($item_id, $item, $order_id) {
$item_type = $item->get_type();
$order= wc_get_order($order_id);
// We only want product order type
if ($item_type == 'line_item') {
$product = wc_get_product($item->get_product_id());
$new_name=get_post_meta($product_id, '_tmcartepo_data', true);
$item->set_name($new_name);
$item->save();
}
}
谢谢。我想显示produtname-aggiunte。