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

Not functioning on Google Chrome

7 Apr 2020 Edited
#1
This issue is marked as solved
After pressing the Add to cart button, it redirects to usercp.php?action=cart&env=bankpipe&add=1&bid=1
and displays:

{
"title": "Item added successfully",
"message": "The selected item has been added successfully to your cart.",
"action": "add"
}

After opening the cart manually it gets added, so I add a coupon and it displays in plain HTML:
{
"errors": [
"This promo code does not appear to be valid."
]
}
Which means that the notifications are attempting to get displayed.

I had the same problem when purchasing a subscription on this website, I tried Internet Explorer, there nothing happened. I managed to purchase with Microsoft Edge.

Best answer

Shade 8 Apr 2020 Edited
You have added "<input name='tos' type='checkbox' value='1' />" to BankPipe's settings, which is wrong. That's the code you have to actually display in your templates. BankPipe would then take "tos" (without the quotes) in the required fields setting, and will treat any input named "tos" as required before purchasing. Hope I made myself clear.

All replies

Shade 8 Apr 2020
#2
Mind to share your Chrome configuration? Do you have any content blocker which blocks JavaScript?
Kalju 8 Apr 2020 Edited
#3
uBlock Origin, I turned it off before proceeding. I'm not sure how to share my Chrome configuration, everything should be default.
Shade 8 Apr 2020
#4
That's kinda weird, because this website (and BankPipe itself) is tested on Chrome, Firefox, Edge and Opera both on MacOS and Windows. I cannot reproduce your issue, can you check your browser console for JS errors?
Shade 8 Apr 2020
#5
I've debugged directly on your website: you have added a malformed "required" field. You just need to add the field's name (in your case: tos), not the entire HTML, otherwise it will not work.
Kalju 8 Apr 2020 Edited
#6
This is displayed when the requiredFields is not added in the templates.
Oh the example code takes in ' instead of ".

Uncaught SyntaxError: Unexpected identifier
at t.activateScript (rocket-loader.min.js:1)
at rocket-loader.min.js:1
at t.run (rocket-loader.min.js:1)
at rocket-loader.min.js:1
at HTMLScriptElement.<anonymous> (rocket-loader.min.js:1)
Shade 8 Apr 2020 Edited
#7
You have added "<input name='tos' type='checkbox' value='1' />" to BankPipe's settings, which is wrong. That's the code you have to actually display in your templates. BankPipe would then take "tos" (without the quotes) in the required fields setting, and will treat any input named "tos" as required before purchasing. Hope I made myself clear.