Click anywhere to close this dialog

Farewell

Great is the art of beginning, but greater is the art of ending
Henry Wadsworth Longfellow

I announce that I cease all development and activity in the programming universe indefinitely. My career has reached the turning point I was not expecting for at least another year, leaving me highly off guard and without laid-out plans for this hobby's continuity. I have begun a 5-year residency program in Neurosurgery which is clearly not compatible, time-wise, with programming.

I gave in all my passion for developing, and you gave me back your loyalty and trust, even when I did not deserve that much. Now it is the time for payback. I release all my present and past work as Open Source software, in the hope some talented developer will continue maintaining and expanding my vision of a modern, sleek forum software. The intrinsic flexibility of MyBB is the true hidden gem of an otherwise outdated codebase; I do hope the project can continue and be updated complying to the latest coding standards.

I hereby thank Euan, kawaii, andrewjs18, Ben, Matt, Omar G., effone, Eric J., Devilshakerz, Wildcard, JordanMussi and all the other team members I have had the opportunity to work with when I was a MyBB team member. I thank Tomm M, my mentor, who inspired me to pick up coding with his piece-of-art plugins. And finally, I thank all of you MyBBoost subscribers who have helped me getting through my toughest university years economically.

Yours sincerely, Filippo

Board setting help

31 May 2020
#1
This issue is marked as solved

You are viewing page #2

Show original post

Best answer

Shade 31 May 2020 Edited
Let's say you want a checkbox named "policy" to be checked before the user can get past the purchase link. You would need to add "policy" to that field, and in bankpipe_cart* you'd need to add your checkbox:

<input type="checkbox" name="policy" />
You can add as many required fields as you want, separated by a coma in BankPipe's setting. Example: policy, address in BankPipe's setting and the following in your templates:

<input type="checkbox" name="policy" />
<input type="text" name="address" />
The important bit is the "name" attribute. If such fields are left blank, the user will be presented an error.

Note that you can customize your fields as much as you like. They just need the "name" attribute and the relevant reference in BankPipe's setting.

As of BankPipe beta 10, bankpipe_subscriptions* templates do not include direct purchase links and all payments are routed through the cart, so you just need to add the field(s) to bankpipe_cart*.

All replies

Dr.Jeet 31 May 2020 Edited
#11
I will try and tell.

On checkout page of paypal, It give error that 'This is seeler account and you have to login with another Paypal address.'
Shade 31 May 2020
#12
Yes, you will need two separate sandbox accounts. Please familiarize with PayPal developers: https://developer.paypal.com/docs/integr...x-testing/
Dr.Jeet 2 Jun 2020 Edited
#13
Please guide...Should i have to create new sanbox business account to test sandbox? or I have to upgrade my personal Paypal account? At present, I can receive and send payments on my personal Paypal account, so is it require to upgrade to business account to get money through bankpipe?

If is m not wrong, accounts on https://developer.paypal.com/ are account for getting money..i.e live account
and on https://www.sandbox.paypal.com/ are for testing ONLY.
Shade 2 Jun 2020
#14
Yes, a business account is necessary (as stated in the docs: BankPipe documentation). Sandbox and live payments are separate.