
Originally Posted by
DivaVocals
It's a known issue with Rewards Points.. I think there is a fix for this posted on the Rewards Points support thread.. not really an Edit Orders issue..
Hi Diva
,
i found the culprit, in \admin\edit_orders.php line 432 is:
PHP Code:
$order_total['text'] = $currencies->format($order_total['value'], true, $order->info['currency'], $order->info['currency_value']);
tell me if i get it right, basically It take the order_total['value'] and put it in the order_total['text'] after formatting it with currencies.
Would something like
PHP Code:
$order_total['text'] = $order_total['value'];
do the same but without formatting?
Thanks