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

How to set price to attachment in BankPipe

15 Jan 2019
#1
This issue is marked as solved
Hi

How to set price to attachment in BankPipe
Shade 18 Jan 2019
#2
Hello, in order to set a price, make sure:
1) BankPipe is enabled in the forum you want to monetize attachments in;
2) you have set a PayPal email in your User Control Panel > Payments and subscriptions > My items.
Pramo 19 Jan 2019 Edited
#3
Did all above but not able to set price I have shared admin ligin details with you

Did i need to set any shortcode to attachment?
Shade 19 Jan 2019
#4
Sorry for the delay, yes indeed, I think you are the first trying third party monetization as I forgot to mention in the thread that you do have to add the following piece of code in your post_attachments_attachment template:

{$paidOptions}
Anyway, make sure you have a payee in your User control panel as well. The default one in the Admin control panel is not enough for attachments, as they are bound to each and unique user. If you want every mod and admin to use a single PayPal account, the only option at the moment is to tell them to use yours. In the future I might introduce an option to force a payee even for third party monetized attachments.
Shade 19 Jan 2019
#5
Note that thanks to the details you have provided privately I have already edited the template for you; I have also adjusted some settings (BankPipe's notification sender cannot be an email, but a user id – I've just deleted the email).
Pramo 19 Jan 2019
#6
Thanks Shade for update . Now plugin is working very well

This is very good plugin :)
Pramo 22 Jan 2019 Edited
#7
Hello Shade

Need one more help
How i can show attachment like your attachment https://imgur.com/IknS7lj
I want to Style attachments as as your one
can you please share postbit_attachments_attachment and its appropriate ccs

My current postbit_attachments_attachment template as below

<br />{$attachment['icon']}&nbsp;&nbsp;<a href="attachment.php?aid={$attachment['aid']}" target="_blank" title="{$attachdate}">{$attachment['filename']}</a> ({$lang->postbit_attachment_size} {$attachment['filesize']} / {$lang->postbit_attachment_downloads} {$attachment['downloads']})
Shade 22 Jan 2019
#8
Sorry, but the styling you see on MyBBoost is uniquely tailored to its theme and its framework (UIkit), so it would be impossible for you to replicate the styling without including UIkit. That's almost 300kb of CSSes and JSes packed together, something you don't want to add just for this little thing. Your best bet is try to replicate on your own with custom CSS rules. I don't provide support for styling anyway as it's not related to BankPipe's functionalities.
Pramo 22 Jan 2019
#9
Thanks Shade for update