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 badges
Add a comment  | 

1 Answer 1

Reset to default 0

You 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