Our Default Currency is AUD but it keeps paying in USD


  • Default avatar
    adele8    
     10 years ago
    0

    Our shop default currency is setup for AUD but it keeps paying via USD as default?
  • Your avatar
    seyi    
     10 years ago
    0

    Hello,

    What version of the eway plugin are you using? Are you using rapid 3 or just direct payments through the website?
  • Default avatar
    adele8    
     10 years ago
    0

    I am using the rapid 3 payments for eway that I purchased through this website, I can send through the backend details for the site if required?
  • Your avatar
    seyi    
     10 years ago
    0

    Yes, if you can send a private message with that information, I can take a look.
  • Your avatar
    seyi    
     10 years ago
    0

    Hello,

    Took a look and see now, you are using a very old vesion of the eway plugin. in www/plugins/vmpayment/eway/eway.php around line 575 is this
    <?php
            $q 
    'SELECT   `virtuemart_currency_id` FROM `#__virtuemart_currencies` WHERE `currency_code_3`= "USD"' ;
    ?>


    Update it to AUD
    <?php
            $q 
    'SELECT   `virtuemart_currency_id` FROM `#__virtuemart_currencies` WHERE `currency_code_3`= "AUD"' ;
    ?>