Mehrere Währungen beim Paypal

Aktuelle Version: 1.0.6
Veröffentlicht: 01.09.10
Forum rules
Vor dem erstellen neuer Supportanfragen bitte zuerst in die board3 Portal FAQ schauen und die Suche benutzen!
Viele Fragen sind bereits schon gestellt und beantwortet worden.
Bitte auch unsere Forumsregeln lesen und beachten!
Locked
User avatar

Topic author
scwfan06
Valued Contributor
Posts: 55
Joined: 3. July 2008 14:18
phpBB.de User: scwfan06
phpBB.com User: scwfan06
Location: Herne
Contact:

Mehrere Währungen beim Paypal

Post by scwfan06 »

Ich hab mir mal den Spaß gemacht und beim Paypal eine Auswahl zwischen Euro & US Dollar gemacht.

Öffne: ./styles/prosilver/template/portal/block/donation/paypal.html

Suche:

Code: Select all

<input type="hidden" name="currency_code" value="EUR" />
Ersetze mit:

Code: Select all

<select name="currency_code">
		<option value="EUR">Euro</option>
		<option value="USD">US-Dollar</option>
</select>
Suche folgenden Code:

Code: Select all

<input type="hidden" name="tax" value="0" />
EUR
und entferne ihn.

Dann abspeichern, hochladen und Template-Cache leeren, fertig! ;)
Last edited by scwfan06 on 24. July 2008 15:26, edited 1 time in total.
User avatar

Kevin
Site Admin
Posts: 2989
Joined: 7. January 2006 20:11
phpBB.de User: Saint
phpBB.com User: Saint_hh
Location: Hamburg
Contact:

Re: Mehrere Währungen beim Paypal

Post by Kevin »

Sehr schön - danke fürs teilen! :)
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~

Kein Support per PN / No support via PM!
User avatar

Topic author
scwfan06
Valued Contributor
Posts: 55
Joined: 3. July 2008 14:18
phpBB.de User: scwfan06
phpBB.com User: scwfan06
Location: Herne
Contact:

Re: Mehrere Währungen beim Paypal

Post by scwfan06 »

Bitte schön. ;)
User avatar

Topic author
scwfan06
Valued Contributor
Posts: 55
Joined: 3. July 2008 14:18
phpBB.de User: scwfan06
phpBB.com User: scwfan06
Location: Herne
Contact:

Re: Mehrere Währungen beim Paypal

Post by scwfan06 »

Das ganze kann man auch mit Radio-Buttons machen:

Statt:

Code: Select all

<select name="currency_code">
      <option value="EUR">Euro</option>
      <option value="USD">US Dollar</option>
</select>
Fügt man einfach:

Code: Select all

<input type="radio" name="currency_code" value="EUR"> Euro<br>
   	<input type="radio" name="currency_code" value="USD"> US-Dollar<br>
ein. Dann wieder abspeichern, hochladen und Template-Cache leeren. :)
Locked

Return to “board3 Portal 1.0.x - Deutscher Support”