Irin Posted September 10, 2008 Posted September 10, 2008 Hello, I offer multi-currency on my site. However, I want to configure my shop so people can only view prices in different currencies but process payments and issue invoices in my default currency (USD) only. How can I do that? Thanks in advance.
BryceJr Posted September 10, 2008 Posted September 10, 2008 Hello, I offer multi-currency on my site. However, I want to configure my shop so people can only view prices in different currencies but process payments and issue invoices in my default currency (USD) only. How can I do that? Thanks in advance. In Paypal, payment can be setup to accept multiple currencies and convert to USD.
Irin Posted September 10, 2008 Author Posted September 10, 2008 In Paypal, payment can be setup to accept multiple currencies and convert to USD. That is the problem with PayPal because it has its own conversion rate which is usually lower than mine (higher when it deals with refunds), and I'm also loosing money on the exchange rates. So, one of the reasons I want to process orders in USD only is to avoid a fixed percentage fee from PayPal. Also, credit card transactions that involve a currency conversion later cause confusion in customers because of the discrepancy between the invoice total and credit card statement total. So, the best approach is that I will offer to purchase in US dollars only and customers will have the amount converted on the credit card statement.
web-project Posted September 10, 2008 Posted September 10, 2008 you can install the following contribution: Display Price in Default Currency http://www.oscommerce.com/community/contributions,3333 This module is for shop owners who want to offer multi-currency on their site but still charge in their default currency. The module will display an additional order total field during the final checkout stage (checkout_confirmation) in the shops default currency if the orders currency is not the same as the shops default currency. Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here! 8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself. Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues. Any issues with oscommerce, I am here to help you.
satish Posted September 10, 2008 Posted September 10, 2008 mpdify function currencies() { $this->currencies = array(); $currencies_query = tep_db_query("select code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value from " . TABLE_CURRENCIES); while ($currencies = tep_db_fetch_array($currencies_query)) { $this->currencies[$currencies['code']] = array('title' => $currencies['title'], 'symbol_left' => $currencies['symbol_left'], 'symbol_right' => $currencies['symbol_right'], 'decimal_point' => $currencies['decimal_point'], 'thousands_point' => $currencies['thousands_point'], 'decimal_places' => $currencies['decimal_places'], 'value' => $currencies['value']); } } to function currencies() { $this->currencies = array(); //if phpself has chekout in strcmp $currencies_query = tep_db_query("select code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value from " . TABLE_CURRENCIES where title="US"); else $currencies_query = tep_db_query("select code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value from " . TABLE_CURRENCIES); while ($currencies = tep_db_fetch_array($currencies_query)) { $this->currencies[$currencies['code']] = array('title' => $currencies['title'], 'symbol_left' => $currencies['symbol_left'], 'symbol_right' => $currencies['symbol_right'], 'decimal_point' => $currencies['decimal_point'], 'thousands_point' => $currencies['thousands_point'], 'decimal_places' => $currencies['decimal_places'], 'value' => $currencies['value']); } } ion classes/currencies.php Satish Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does.
Irin Posted September 10, 2008 Author Posted September 10, 2008 you can install the following contribution:Display Price in Default Currency http://www.oscommerce.com/community/contributions,3333 yes, I found this contribution, thanks. I think it might do the job. Thanks again.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.