admin管理员组文章数量:1279055
I have had many orders in the past that the currency is different and has 4 extra zeros. I want to remove these 4 zeros from them and change their currency together. please help me
I have had many orders in the past that the currency is different and has 4 extra zeros. I want to remove these 4 zeros from them and change their currency together. please help me
Share Improve this question asked Sep 28, 2021 at 0:19 mecci leomecci leo 13 bronze badges1 Answer
Reset to default 0You can update new price using below method -
$order_id = 123;
$order = wc_get_order( $order_id );
foreach( $order->get_items() as $item_id => $item ){
$new_product_price = 30;
$product_quantity = (int) $item->get_quantity();
$new_line_item_price = $new_product_price * $product_quantity;
$item->set_subtotal( $new_line_item_price );
$item->set_total( $new_line_item_price );
$item->save(); // Save line item data
}
$order->calculate_totals();
本文标签: pluginsRemove Zero Money From Previews Order woocommerce
版权声明:本文标题:plugins - Remove Zero Money From Previews Order woocommerce 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741287119a2370337.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论