PDA

View Full Version : Currency Converter


rdubill357341
05-11-2009, 11:33 AM
Looking for something that will show our product prices in the correct exchange rate of the viewers country...

Would also be nice if the add to cart function would also update thed cart based on the viewers country...

Anyone???

thanks in advance...

Ray Borduin
05-11-2009, 12:28 PM
How do you want to maintain the exchange rates? What currencies and countries do you want to support? There are quite a few options. Most large multinational companies use a completely separate web site for each region, language, and currency. There are a lot of options for how to do this.

rdubill357341
05-12-2009, 02:41 AM
Ray - we will have about 6 countries to start....

We want to be able to change the displayed price to the currency of the country that the visitor is located in (ip address???)...

and then use that new price as the price that is added to the cart...

thanks

Ray Borduin
05-12-2009, 08:35 AM
I don't think you can reliably tell where a user is located by ip address. Most web sites have you choose your country. Either way no WebAssist software will help you with this part so my suggestion would be a simple form asking the user which country they are in and storing it as a cookie and session variable for use within the site.

Then I guess you would need a database of curency symbols and exchange rates to properly calculate and display the correct related currency. You could probably store those in the session and as cookies as well.

Then it is just a matter of using the session variable or cookie to display the correct currency symbol and do the math to show the correct converted price. DataAssist from WebAssist would help you manage that database online if that was something you wanted the customer to update currency rates from an administrative interface.