Page that hangs with BBcode paypal

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Page that hangs with BBcode paypal

Post by systemcrack »

Hello everyone, I hope I'm not wrong section and especially not to ask something already repeated:
I have tried the BBcode Paypal, but when I try to insert it into the signature and I click on the preview page loads and I see the preview, but after any button on the forum longer responding. If I make the page refresh is still frozen .. also BBcode paypal does not take commands from other BBcode such as in the "center", could you help me to solve please.

The fact is that I am not a lover of the mods that affect the database, so I'm forever in search of customizations less invasive as possible.
This seemed perfect to give the possibility to advanced users to be able to plug in the key signature with the custom account.

Thanks in advance to anyone who will be kind enough to help me.

P.S.
I apologize in advance for my terrible English :? :D

Page that hangs with BBcode paypal

Post by Steve »

Does the PayPal bbcode display in the users signature after submitting ? Iirc the image want load on memberlist file whilst viewing profiles

Page that hangs with BBcode paypal

Post by systemcrack »

I'm sorry, but I'm not sure I understand what you mean, however yes.. I want to give the opportunity to each individual user to put in the signature after submitting the button make a donation.

Page that hangs with BBcode paypal

Post by Steve »

Oh that is strange I just tried it here and for sure after previewing the submit button does not work

Page that hangs with BBcode paypal

Post by Steve »

there is no fix because of the form element in the paypal button,here is a better version of the donate bbcode
BBCode usage

Code: Select all

[donate={EMAIL},{IDENTIFIER}][/donate]
HTML replacement

Code: Select all

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<fieldset>
<input type="hidden" name="cmd" value="_donations" />
<input type="hidden" name="business" value="{EMAIL}" />
<input type="hidden" name="lc" value="GB" />
<input type="hidden" name="no_note" value="0" />
<input type="hidden" name="currency_code" value="{IDENTIFIER}" />
<input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest" />
<input type="image" src="https://www.paypal.com/en_US/GB/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." />
<img  src="https://www.paypal.com/en_GB/i/scr/pixel.gif" alt="Donate" width="1" height="1" />
</fieldset>
</form>
Help line

Code: Select all

Donate : [donate=emailaddress,currency][/donate]

Page that hangs with BBcode paypal

Post by systemcrack »

Ok thanks!