Thanks

Code: Select all
<option value="USD" selected="selected">{L_DONATION_USD}</option>
<option value="EUR">{L_DONATION_EUR}</option>
<option value="GBP">{L_DONATION_GBP}</option>
<option value="JPY">{L_DONATION_JPY}</option>
<option value="AUD">{L_DONATION_AUD}</option>
<option value="CAD">{L_DONATION_CAD}</option>
<option value="HKD">{L_DONATION_HKD}</option>
So, for example I could add a line like this:Stoker wrote:These are the lines in donate_body.html that displays the choice of currency. The first line is the default currency:Code: Select all
<option value="USD" selected="selected">{L_DONATION_USD}</option> <option value="EUR">{L_DONATION_EUR}</option> <option value="GBP">{L_DONATION_GBP}</option> <option value="JPY">{L_DONATION_JPY}</option> <option value="AUD">{L_DONATION_AUD}</option> <option value="CAD">{L_DONATION_CAD}</option> <option value="HKD">{L_DONATION_HKD}</option>
Code: Select all
<option value="TAKA">{L_DONATION_TAKA}</option>
Works! Thanks.Stoker wrote:Yes, if TAKA is the correct currency code and if you add {L_DONATION_TAKA} to the included language file.
You can see more about currency codes at the paypal developer site.