Mike,
Yes it can be done, but it requires hacking the core code.
In includes/modules/pages/shopping_cart/header_php.php find:
then beneath it put:Code:$cartShowTotal = $currencies->format($_SESSION['cart']->show_total());
Now drop $cartShowTotalExtraCurrency anywhere you like into your cart template to display the subtotal in your second currency.Code:$original_currency = $_SESSION['currency']; $_SESSION['currency'] = EXTRA_CURRENCY; $cartShowTotalExtraCurrency = $currencies->format($_SESSION['cart']->show_total()); $_SESSION['currency'] = $original_currency;
You can repeat this process for other values as needed.


Reply With Quote
