Wrong currency symbol shown in VirtueMart Paypal checkout
GJC Web Design UK Joomla & VirtueMart how to, tips, tricks, coding examples, html, php, tutorial, 101, useful hints, help
A collection of help articles and coding examples for Joomla & Virtuemart
Belgium, VirtueMart & Joomla Web Design England UK Britain & Germany
Joomla, VirtueMart, how to, tips, tricks, coding examples, html, php, tutorial, 101, useful hints, help sand
Wrong currency symbol shown in VirtueMart Paypal checkout.
How to fix the wrong currency symbol in the VirtueMart 1.1 Paypal checkout.
currency, virtuemart, currencysymbol, store, symbol, default, paypal, code, session, passed, product, payment, eur, gbp, change, vendor, add, tab, right, configuration, php, usd, elseif, line, tag, entry, opening, joomla, completely, ignored, module, multi, integration, actually, major, bug, solution, forums, components, list
GJC Web Design UK Joomla & VirtueMart how to, tips, tricks, coding examples, html, php, tutorial, 101, useful hints, help
A collection of help articles and coding examples for Joomla & Virtuemart
Belgium, VirtueMart & Joomla Web Design England UK Britain & Germany
Joomla, VirtueMart, how to, tips, tricks, coding examples, html, php, tutorial, 101, useful hints, help
Wrong currency symbol shown in VirtueMart Paypal checkout
Wrong currency symbol shown in VirtueMart Paypal checkout.
How to fix the wrong currency symbol in the VirtueMart 1.1 Paypal checkout.
currency, virtuemart, currencysymbol, store, symbol, default, paypal, code, session, passed, product, payment, eur, gbp, change, vendor, add, tab, right, configuration, php, usd, elseif, line, tag, entry, opening, joomla, completely, ignored, module, multi, integration, actually, major, bug, solution, forums, components, list
If you bother to give a suggestion, make it as clear as possible
I had the same problem, but I have now fixed the Paypal script.
Use the following code:
$dbsi = new ps_DB;
$q_si = "SELECT order_currency FROM #__vm_orders ";
$q_si .= "WHERE #__vm_orders.order_id='$order_id'";
$dbsi->query($q_si);
$order_currency = $dbsi->f("order_currency");
then on the array, change the following code
"currency_code" => $order_currency,