3.2 & 3.3 Extensions Database 3.2 / 3.3Paypal Donation

<span class="qte-attr qte_32_33-qte">3.2.x & 3.3.x</span>
User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6464
Joined: 13 Jan 2014, 21:45
    Windows 10 Firefox

Re: Paypal Donation

Post by dmzx »

Updated it :thumbup:

User avatar

gpinpin
Users
Users
Posts: 11
Joined: 17 Jan 2016, 16:51
    Windows 8.1 Chrome

Re: Paypal Donation

Post by gpinpin »

Bonjour
Pas encore testé mais téléchargé
Je vous remercie pour ce fichier que vous avez traité rapidement

A+ Gpinpin

Hello
But not yet tested download
Thank you for the file you have treated quickly
A + Gpinpin

User avatar

sebasstk
Users
Users
Posts: 2
Joined: 20 Feb 2016, 14:13
    Windows 10 Firefox

Re: Paypal Donation

Post by sebasstk »

Paypal Donation v1.0.2
Dutch translation
nl.zip
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

Musiker15
Users
Users
Posts: 29
Joined: 07 Oct 2016, 16:10
    Windows 10 Chrome

Re: Paypal Donation

Post by Musiker15 »

German Translation
de.zip
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
I'm from Germany so my English is not the best...
________________________________________________________________
Image

User avatar

nelflucifer
Users
Users
Posts: 70
Joined: 03 Jan 2016, 12:24
    Windows 7 Opera

Re: Paypal Donation

Post by nelflucifer »

Translation for the Russian Federation - ver1.0.2
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Image
Learn to read people's thoughts, not forgetting about their.
The extension translate from English to Russian...
English Forums
Available 251 extension with translation into Russian language...

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6464
Joined: 13 Jan 2014, 21:45
    Windows 10 Chrome

Re: Paypal Donation

Post by dmzx »

First post updated.

User avatar

Galixte de EzCom
Users
Users
Posts: 39
Joined: 04 Mar 2015, 17:26
    Windows 10 Opera

Re: Paypal Donation

Post by Galixte de EzCom »

Communau EzCom
Image « Traductions d’extensions & styles pour phpBB 3.1.x & 3.2.x ».

User avatar

Topic Author
dmzx
Founder
Founder
Posts: 6464
Joined: 13 Jan 2014, 21:45
    Windows 10 Chrome

Re: Paypal Donation

Post by dmzx »

Galixte de EzCom wrote: 18 May 2017, 04:08 FRENCH translation : https://www.phpbb.com/customise/db/exte ... 71#p563971.
:thumbup:

User avatar

Xxxbennyxxx
Users
Users
Posts: 74
Joined: 30 Dec 2014, 22:23
    Windows 8.1 Chrome

Re: Paypal Donation

Post by Xxxbennyxxx »

How do I move the donation button for the contact button?Image
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

fliper4o
Users
Users
Posts: 21
Joined: 05 Aug 2017, 19:13
    Windows 8.1 Chrome

Re: Paypal Donation

Post by fliper4o »

Hey guys,
I'm using this ext and I've got 1 space before " Donate" in the navbar not like it is here "Donate" so can u tell me from where I can edit it.
Thanks

User avatar

fliper4o
Users
Users
Posts: 21
Joined: 05 Aug 2017, 19:13
    Windows 8.1 Chrome

Re: Paypal Donation

Post by fliper4o »

So I've got a question
there is <3 Donate there is an ICON(space)(gap)Donate(Name). How can I delete the gap?
Example (_ - is the gap) there is 1 extra space after the space between the icon & the text!
Now: :!: _Donate
After: :!: Donate
Mine:Image
Here:Image
Spot the differences in the text " Donate" & "Donate"
//Paypal Donation 1.0.3;phpBB 3.2.1; prosilver
Ty

User avatar

fliper4o
Users
Users
Posts: 21
Joined: 05 Aug 2017, 19:13
    Windows 8.1 Chrome

Re: Paypal Donation

Post by fliper4o »

Somebody? Sniper_E

User avatar

Sniper_E
VIP
VIP
Posts: 1157
Joined: 14 Oct 2014, 19:01
    Windows 10 Firefox

Re: Paypal Donation

Post by Sniper_E »

Your source codes look like this.

Code: Select all

<i class="icon fa fa-heart fa-spin icon-red" aria-hidden="true"></i>
		<span>Donate</span>
Maybe fix like this in your event template.

Code: Select all

		<i<!-- IF PHPBB_IS_32 --> class="icon fa fa-heart"<!-- ENDIF --> aria-hidden="true"></i><span>{L_DONATEINDEX}</span>
Or use tab in the codes.

Code: Select all

		<i<!-- IF PHPBB_IS_32 --> class="icon fa fa-heart"<!-- ENDIF --> aria-hidden="true"></i>
		<span>{L_DONATEINDEX}</span>
I don't know this ext.
Image
No is NEVER an Option and NEVER is the only Option when it comes to Giving Up!™

User avatar

fliper4o
Users
Users
Posts: 21
Joined: 05 Aug 2017, 19:13
    Windows 8.1 Chrome

Re: Paypal Donation

Post by fliper4o »

From
\donation\styles\prosilver\template\event\overall_header_navigation_append.html

Code: Select all

<!-- IF S_DONATE_ENABLED -->
<li <!-- IF not PHPBB_IS_32 -->class="small-icon icon-donate"<!-- ENDIF --> data-last-responsive="true">
	<a href="{U_DONATE}" title="{L_DONATEINDEX}" role="menuitem">
		<i<!-- IF PHPBB_IS_32 --> class="icon fa fa-heart fa-spin icon-red"<!-- ENDIF --> aria-hidden="true"></i>
		<span>{L_DONATEINDEX}</span>
	</a>
</li>
<!-- ENDIF -->
To
\donation\styles\prosilver\template\event\overall_header_navigation_append.html

Code: Select all

<!-- IF S_DONATE_ENABLED -->
<li <!-- IF not PHPBB_IS_32 -->class="small-icon icon-donate"<!-- ENDIF --> data-last-responsive="true">
	<a href="{U_DONATE}" title="{L_DONATEINDEX}" role="menuitem">
		<i<!-- IF PHPBB_IS_32 --> class="icon fa fa-heart fa-spin icon-red"<!-- ENDIF --> aria-hidden="true"></i><span>{L_DONATEINDEX}</span>
	</a>
</li>
<!-- ENDIF -->
Lines 4,5 to one line 4. Solved, thanks for help!

User avatar

martin
Admin
Admin
Posts: 5105
Joined: 06 Apr 2014, 16:12
    Ubuntu Chrome

Re: Paypal Donation

Post by martin »

What theme are you using ? to need it in one line.
Image

Post Reply Previous topicNext topic