Change list of value (€, $ ecc ecc)?
Posted: 23 Nov 2011, 00:25
open styles/prosilver/template/donate/donate_body.html
Find
After that there are list of values
Find
remove
and add it after your prefer value
ex:
for EUR € selected like prefer
Sorry for my bad english!
Find
Code: Select all
<select name="currency_code" id="currency_code">
Find
Code: Select all
<option value="USD" selected="selected">{L_DONATION_USD}</option>
Code: Select all
selected="selected"
ex:
Code: Select all
<option value="EUR" selected="selected">{L_DONATION_EUR}</option>
<option value="USD">{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>
Sorry for my bad english!