merder99 Posted February 5, 2007 Posted February 5, 2007 Hi, i am running a site in australian dollars. My PayPal account has Australian dollars as a default. BUT, when you click continue in checkout, and it goes to PayPal, it converts to $US. Please help - i have looked for the answer but to no avail. thanks in advance. Michael
241 Posted February 6, 2007 Posted February 6, 2007 is this the standard paypal module or paypal IPN or another? STANDARD: needs to be code changed uninstalled and installed. CODE CHANGES: lines #83 - #84 if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD'))) { $my_currency = 'USD'; change to if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD', 'AUD'))) { $my_currency = 'AUD'; line #121 tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Transaction Currency', 'MODULE_PAYMENT_PAYPAL_CURRENCY', 'Selected Currency', 'The currency to use for credit card transactions', '6', '6', 'tep_cfg_select_option(array(\'Selected Currency\',\'Only USD\',\'Only CAD\',\'Only EUR\',\'Only GBP\',\'Only JPY\'), ', now())"); change to tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Transaction Currency', 'MODULE_PAYMENT_PAYPAL_CURRENCY', 'Selected Currency', 'The currency to use for credit card transactions', '6', '6', 'tep_cfg_select_option(array(\'Selected Currency\',\'Only USD\',\'Only CAD\',\'Only EUR\',\'Only GBP\',\'Only JPY\',\'Only AUD\'), ', now())"); No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes.
juney Posted March 12, 2007 Posted March 12, 2007 HI I am having the same problem - sounds like this could be the answer for me too but you don't say which file(s) to change - can you advise please?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.