douxiji8707 2019-06-18 11:26
浏览 33

订购Itemmeta woocommerce

I must to edit a product name in woocommerce when in the product was add ('_aggiunte), _aggiunte is a custom field of woocommerce_order_itemmeta tabs.

I try with this code but don't word.

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();  
    }
}

thanks. I want to show produtname-aggiunte.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 2024-五一综合模拟赛
    • ¥15 下图接收小电路,谁知道原理
    • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
    • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
    • ¥15 手机接入宽带网线,如何释放宽带全部速度
    • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
    • ¥15 ETLCloud 处理json多层级问题
    • ¥15 matlab中使用gurobi时报错
    • ¥15 这个主板怎么能扩出一两个sata口
    • ¥15 不是,这到底错哪儿了😭