Change list of value (€, $ ecc ecc)?

Download and support for PhpBB3 Paypal Donation Mod
Locked
artikkk
BBCoder II
BBCoder II
Posts: 42
Joined: 02 May 2010, 18:33

Change list of value (€, $ ecc ecc)?

Post by artikkk »

open styles/prosilver/template/donate/donate_body.html

Find

Code: Select all

<select name="currency_code" id="currency_code">
After that there are list of values :)

Find

Code: Select all

<option value="USD" selected="selected">{L_DONATION_USD}</option>
remove

Code: Select all

selected="selected"
and add it after your prefer value

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>
for EUR € selected like prefer :)

Sorry for my bad english! :oops:
Locked