Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Onesimpleman

Archived
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Real Name
    Sunil

Onesimpleman's Achievements

  1. That line is for people who select any other currency than the 6 paypal currencies. Those who select others ( in my case South african Rand) should be billed in USD, may be USD is the standard all over the world and makes it easier for customers to convert, but if u do not sell outside auz then you can change it to AUD.
  2. You can either use paypal by activating paypal module from admin area with the necessary details or there are other options which do not need any set up like Nochex, Money Bookers, Ikobo. Or you can get a merchant account from World pay, authroize.net , there are hundreds of other companies you can approach. Integrate the payment gateway with the OS commerce cart. It means adding a few files and a few changes in your database and may be editing a few files. It depends on which gateway you choose. Cheers
  3. You can activate AUD in standard and ipn modules by following this procedure. Go to Admin/currencies and add a new currency australian dollars if it is not already there. AUD is the currency code. Also go to Admin/modules/paypal_ipn or paypal(standard) which ever the case may be to accept selected currencies. Now for Paypal IPN Edit \catalog\includes\modules\payment\paypal_ipn.php file from if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD'))) { $my_currency = 'USD'; to if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD', 'AUD'))) { $my_currency = 'USD'; For Paypal standard Edit Edit \catalog\includes\modules\payment\paypal.php file from if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD'))) { $my_currency = 'USD'; to if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD', 'AUD'))) { $my_currency = 'USD'; This way customers choosing currency as australian dollar can pay in AUD using paypal. Any problems please email me.
  4. You can activate AUD in standard and ipn modules by following this procedure. Go to Admin/currencies and add a new currency australian dollars if it is not already there. AUD is the currency code. Also go to Admin/modules/paypal_ipn or paypal(standard) which ever the case may be to accept selected currencies. Now for Paypal IPN Edit \catalog\includes\modules\payment\paypal_ipn.php file from if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD'))) { $my_currency = 'USD'; to if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD', 'AUD'))) { $my_currency = 'USD'; For Paypal standard Edit Edit \catalog\includes\modules\payment\paypal.php file from if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD'))) { $my_currency = 'USD'; to if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD', 'AUD'))) { $my_currency = 'USD'; This way customers choosing currency as australian dollar can pay in AUD using paypal. Mail me if you have any problems.
×
×
  • Create New...