Replies: 1
Hello,
How can i get the exchange rate by country? using php code ?
i want to set it as a variable “current_exchange_rate” and pass it during the order
add_action( 'woocommerce_add_order_item_meta', 'misha_order_item_meta', 10, 2 );
// $item_id – order item ID
// $cart_item[ 'product_id' ] – associated product ID (obviously)
function misha_order_item_meta( $item_id, $cart_item ) {
$current_exchange_rate = ;
}