
Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on July 18, 2023, 11:38
Hello
Please update the plugin to latest version - https://currency-switcher.com/how-to-make-auto-update-for-wordpress-plugins-and-themes-bought-on-envato
Then go and update those orders with which you have problems. Clear analytics cache and do a test
Hello
Please update the plugin to latest version - https://currency-switcher.com/how-to-make-auto-update-for-wordpress-plugins-and-themes-bought-on-envato
Then go and update those orders with which you have problems. Clear analytics cache and do a test

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on July 19, 2023, 11:46
Hello
This looks like incorrect manipulation of order data.
https://share.pluginus.net/image/i20230719123802.png - https://c2n.me/4iYBYst.png - 20387 / 0.138 = 154446 - I think someone changed the currency of the order without recalculation, so the old rate for USD remained
You can fix it with custom code:
//$order_id = paste this order ID(653100)
$order = wc_get_order( $order_id );
$order->update_meta_data( '_woocs_order_rate', '4.2' );
Hello
This looks like incorrect manipulation of order data.
https://share.pluginus.net/image/i20230719123802.png - https://c2n.me/4iYBYst.png - 20387 / 0.138 = 154446 - I think someone changed the currency of the order without recalculation, so the old rate for USD remained
You can fix it with custom code:
//$order_id = paste this order ID(653100)
$order = wc_get_order( $order_id );
$order->update_meta_data( '_woocs_order_rate', '4.2' );