Hi, using BigCommerce.com for our ecommerce site, we wanted to have the currency converter as a drop-down list instead of the default.
We have been able to do the necessary changes and the currency changes work OK when different currencies are selected, BUT the display currency is always USD irrespective of which currency we may select.
Given below is the modified code in 2 parts (files). Please note Bigcommerce uses Placeholders designated by %%----%%:
Panels/SideCurrencySelector.html
<div>
<span>Currency</span>
<span><select ONCHANGE="location = this.options[this.selectedIndex].value";>
%%SNIPPET_ChooseCurrencyList%%
</select></span>
</div>
Snippets/SideCurrencySelectorCurrency.html
<option value="%%GLOBAL_CurrencySwitchLink%%">
<span>%%GLOBAL_CurrencyName%%</span>
</option>
Thanks for your help.