RE: View in Any Currency, Checkout in Default
maaf <[email protected]> 9 Aug 2003 21:42:37 -0000
| Newsgroups | gmane.comp.web.oscommerce.suggestions |
|---|---|
| Message-ID | <adfff14adc6a247dde2024e5865279dd@osCommerce-Forums> |
This message was sent from: Suggestions and Proposals
http://forums.oscommerce.com/viewtopic.php?p=210845#210845
----------------------------------------------------------------
You can try this:
* set "Switch To Default Language Currency" to false so your customers won't be annoyed by the continous change of currency any more.
* In checkout_proccess.php, after [code]require('includes/application_top.php');[/code]
Add the following line
[code]$currency = DEFAULT_CURRENCY;[/code]
This way you will change to the default currency just before adding the order data to database and before creating the order object.
Good Luck!