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
In Board setting, there is a filed as below:

Required Field:
Enter a coma-separated list of field names required to be filled before making a purchase through cart and subscriptions pages. Reference these fields with names (eg.: for a field named foo, use for example <input name='foo' type='checkbox' value='1' />) in bankpipe_cart* and bankpipe_subscriptions* templates.

What to add there?
Please guide.
Thank you.

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

Shade 31 May 2020 Edited
#2
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*.
Dr.Jeet 31 May 2020
#3
Ok......In gateway for paypal, what to insert in identifier field?

Also in documentation, there is mention add Paypal id in wallet? where is wallet setting.
KEYCAP 4 Open BankPipe's module in your Admin Control Panel. Beneath PayPal's row, copy the client ID and client secret tokens into the respective fields. Add your PayPal email address where you want to receive your funds in the wallet field and save.
Shade 31 May 2020
#4
Identifier and secret token should be filled with the credentials taken from PayPal's developer website.

Wallet ID should be filled with the PayPal email address you want to receive your funds. Beware, if you are using sandbox credentials, you will need to use a sandbox email address as well.
Dr.Jeet 31 May 2020
#5
There is nothing like Identifier in developer site.

App name is identifier?
I created one app in sandbox REST API apps as 'Test' .....so Test Wii be identifier?

Sorry for this things.
Shade 31 May 2020
#6
It's "Client ID".
Dr.Jeet 31 May 2020
#7
Thanks Shade.
Shade 31 May 2020
#8
Read the documentation thoroughly to set up your tokens: BankPipe documentation.
Dr.Jeet 31 May 2020
#9
I read document and done as guided.

For try my self whether payment will upgrade me or not, I add my real payment address, token id and secret in 'Test' account in Sandbox on developer site. but it redirected to payment to my Paypal id.

There is default application also, so should I have to enter that default application details to test for bankpipe without payment.
Shade 31 May 2020
#10
In sandbox mode you can't use any real address, you must use sandbox accounts both for receiving and sending payments.