Hi Juan, thanks for your response!
We’re using the gift card price in the order data to send it to GA4 for tracking.
I do the following to get the order’s data and then the items from the order.
$order = wc_get_order( $order_id );
$order_items = $order->get_items();
We loop through each item in the order $order_items
, but when we get to a gift card, the price isn’t right.
The total value of the order is correct. However, is the gift card item itself that shows the wrong price.
Given this, should I still try the steps you mentioned?
Thanks for your help!