View Single Post
  #5  
Old 09-04-2012, 07:47 PM
 
joss joss is offline
 

X-Cart team
  
Join Date: Feb 2009
Posts: 60
 

Default Re: xpayment Order processing error

Actually, that setting should list all the currencies in your store. As a workaround you could modify the <xcart-dir>/modules/XPayments_Connector/xpc_func.php file as follows:


- Find this function:

-------------------
function xpc_get_currency($ref_id)
{
global $config;

return $config['XPayments_Connector']['xpc_currency'];
}
-------------------

- And modify its code so it looks like this:

-------------------
function xpc_get_currency($ref_id)
{
return 'USD';
}
-------------------
__________________
joss@x-cart.com
Reply With Quote