Code: Select all
IN:
/catalog/controller/payment/pp_express.php (2.0-2.2)
/catalog/controller/extension/payment/pp_express.php (2.3)
BEFORE:
$data['code'] = $this->session->data['shipping_method']['code'];
ADD:
$data['currency'] = $this->session->data['currency'];
$data['currency_library'] = $this->currency;
Code: Select all
IN:
/catalog/view/theme/default/template/payment/pp_express_confirm.tpl (2.0-2.2)
/catalog/view/theme/default/template/extension/payment/pp_express_confirm.tpl (2.3)
REPLACE:
<?php echo $quote['title']; ?> </label>
WITH:
<?php echo $quote['title'] . ' - ' . $currency_library->format($quote['cost'], $currency); ?> </label>