
3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Paypal Donation
-
- Users
- Posts: 11
- Joined: 17 Jan 2016, 16:51
Re: Paypal Donation
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
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
-
- Users
- Posts: 2
- Joined: 20 Feb 2016, 14:13
Re: Paypal Donation
Paypal Donation v1.0.2
Dutch translation
Dutch translation
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
- Users
- Posts: 29
- Joined: 07 Oct 2016, 16:10
Re: Paypal Donation
German Translation
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
- Users
- Posts: 70
- Joined: 03 Jan 2016, 12:24
Re: Paypal Donation
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.

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...
-
- Users
- Posts: 39
- Joined: 04 Mar 2015, 17:26
Re: Paypal Donation
FRENCH translation : https://www.phpbb.com/customise/db/exte ... 71#p563971.
-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Paypal Donation
Galixte de EzCom wrote: 18 May 2017, 04:08 FRENCH translation : https://www.phpbb.com/customise/db/exte ... 71#p563971.

-
- Users
- Posts: 74
- Joined: 30 Dec 2014, 22:23
Re: Paypal Donation
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.
-
- Users
- Posts: 21
- Joined: 05 Aug 2017, 19:13
Re: Paypal Donation
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
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
-
- Users
- Posts: 21
- Joined: 05 Aug 2017, 19:13
Re: Paypal Donation
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:
Here:
Spot the differences in the text " Donate" & "Donate"
//Paypal Donation 1.0.3;phpBB 3.2.1; prosilver
Ty
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:
After:
Mine:

Here:

Spot the differences in the text " Donate" & "Donate"
//Paypal Donation 1.0.3;phpBB 3.2.1; prosilver
Ty
-
- VIP
- Posts: 1157
- Joined: 14 Oct 2014, 19:01
Re: Paypal Donation
Your source codes look like this.
Maybe fix like this in your event template.
Or use tab in the codes.
I don't know this ext.
Code: Select all
<i class="icon fa fa-heart fa-spin icon-red" aria-hidden="true"></i>
<span>Donate</span>
Code: Select all
<i<!-- IF PHPBB_IS_32 --> class="icon fa fa-heart"<!-- ENDIF --> aria-hidden="true"></i><span>{L_DONATEINDEX}</span>
Code: Select all
<i<!-- IF PHPBB_IS_32 --> class="icon fa fa-heart"<!-- ENDIF --> aria-hidden="true"></i>
<span>{L_DONATEINDEX}</span>
-
- Users
- Posts: 21
- Joined: 05 Aug 2017, 19:13
Re: Paypal Donation
From
\donation\styles\prosilver\template\event\overall_header_navigation_append.html
To
\donation\styles\prosilver\template\event\overall_header_navigation_append.html
Lines 4,5 to one line 4. Solved, thanks for help!
\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 -->
\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 -->