Looking at the parser token code, the currency dropdown will only display when more than two currencies are published. However, there are several places that may cause the site to think multiple currencies are installed even when only one currency is published after multiple currencies have been installed.
First, the currency doc is cached, so if you had multiple currencies installed and now only have one, you'll need to reset the cache in order to update the currencies. If you have caching turned on, you'll need to wait until the cache expires or turn caching off, then reset cache, then turn caching back on.
Next, when you have multiple currencies enabled, the currency settings are also stored in the Customer record. You should make a backup of the database and then run a sql statement to update all customer records to have the correct currency setting:
Code:
update dbo.Customer set CurrencySetting='GBP'
You'll also want to make sure that you have updated the Localization.StoreCurrency appconfig parameters to reflect the settings of the currency that you have published.
Last edited by George the Great; 07-21-2009 at 06:54 PM.
<a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>