Invision Community 5: A video walkthrough creating a custom theme and homepage By Matt Thursday at 04:02 PM
Tom Irons Posted May 10, 2016 Posted May 10, 2016 About This File This plugin will allow users to receive/give tips. Settings: Who can tip? - Select which groups will be able to tip other users Who can receive tips? - Select which groups will be able to receive tips from other users
Adam_S Posted May 12, 2016 Posted May 12, 2016 Hi, Dopes this work just in forums, or does it also work in the Downloads and Gallery apps as well?
Tom Irons Posted May 12, 2016 Author Posted May 12, 2016 Right now it only works with forums, but adding it to the other applications wouldn't be so hard at all.
Joey_M Posted May 12, 2016 Posted May 12, 2016 @Tom Irons: My site(s) produce a lot of content, all of which comes from myself or my friend. I'd like to try and encourage other authors to write for us, so this would be perfect if it was made to be compatible with IP.Pages Articles I will keep an eye on it's development.
Adam_S Posted May 12, 2016 Posted May 12, 2016 I will also be keeping an eye on the development of the app, i think once its added to the gallery and files apps, it will be really great for my site!
Tom Irons Posted May 14, 2016 Author Posted May 14, 2016 (edited) What's new in 1.0.2: Added the paypal donation button link functionality back since it was requested When setting up the plugin you can choose what type to use, PayPal.me or Paypal On a different note, the next update will allow this to be used on other apps like Downloads, Gallery, etc. Edited May 14, 2016 by Tom Irons Joey_M 1
LinkMania Posted May 27, 2016 Posted May 27, 2016 Hey, the help snippet on the user's tips setup says "Create a PayPal donation button here, click the email tab, then copy & paste the link in the box below." but there is no such thing like email tab. Can you pleade revise the help and update? thanks! Safety1st 1
jair101 Posted May 27, 2016 Posted May 27, 2016 (edited) Would it be difficult to integrate this with one of the points systems and donate points instead of paypal money? Like this one for example: Edited May 27, 2016 by jair101
Tom Irons Posted May 27, 2016 Author Posted May 27, 2016 3 hours ago, LinkMania said: Hey, the help snippet on the user's tips setup says "Create a PayPal donation button here, click the email tab, then copy & paste the link in the box below." but there is no such thing like email tab. Can you pleade revise the help and update? thanks! You can edit that language string in the ACP to say what you would like it to say.
Caiden Spencer_321044 Posted August 24, 2016 Posted August 24, 2016 Hi, I'm trying to get this to work on my forum but it isn't working. http://theappleforum.com ???
Tom Irons Posted August 24, 2016 Author Posted August 24, 2016 (edited) Have you setup the plugin properly? The button won't show unless the author of the post has their settings set under My Account. Edited August 24, 2016 by Tom Irons
Circo Posted August 31, 2016 Posted August 31, 2016 I currently use IPB 3.x and my only hesitation with moving to v4 is a Tip/Member Donation plugin. We currently use the Member Donate button from IPB 3. This plugin allowed us to allow people that uploaded files to receive donation from other members. The attached image is how it currently looks on my IPB3 site. Is there any way to get this or something similar in IPB4 with this plugin?
Tom Irons Posted August 31, 2016 Author Posted August 31, 2016 1 hour ago, Circo said: I currently use IPB 3.x and my only hesitation with moving to v4 is a Tip/Member Donation plugin. We currently use the Member Donate button from IPB 3. This plugin allowed us to allow people that uploaded files to receive donation from other members. The attached image is how it currently looks on my IPB3 site. Is there any way to get this or something similar in IPB4 with this plugin? I can add this into a later version for sure
Safety1st Posted September 23, 2016 Posted September 23, 2016 Nice idea I hope it will be enough to receive money by contributions… It would be better to remove connection to PayPal at all and let members use any donate link as they wish. I mean link check modification and corresponding descriptions. The plugin doesn't work together with Kitchen Sink no matter what kind of plugin is higher in the list. I just didn't see the button. @Tom Irons may I share your code with KS's author to make compatible version?
Flitterkill Posted September 23, 2016 Posted September 23, 2016 (edited) @Tom Irons I patched him up. It's just the tip button display on the post. I have no idea why your selector isn't working with KS or if my thing is even the conflict. div[data-controller='core.front.core.comment'] > div.cPost_contentWrap.ipsPad > ul.ipsComment_controls.ipsClearfix[data-role='commentControls'] Should work. There are no conflcts with the selector on the page that I can see - everything is where it needs to be. No matter, I tweaked it, targeting just the comment controls and it works. No idea why it didn't work before but here we are. ul.ipsComment_controls.ipsClearfix[data-role='commentControls'] Maybe just a bad install or IPS wierdery. Might not be a bad idea to swap your selector out for the shorter version above to save any grief with other plugins doing things. EDIT: And don't forget to refresh/clear cache after installing and such. Edited September 23, 2016 by Flitterkill Safety1st 1
Safety1st Posted September 23, 2016 Posted September 23, 2016 The next suggestion. Move currency symbol to language string. For Russia native currency is ₽ for example.
Tom Irons Posted September 23, 2016 Author Posted September 23, 2016 (edited) Removed since the issue was fixed. Edited September 23, 2016 by Tom Irons
Safety1st Posted September 24, 2016 Posted September 24, 2016 22 hours ago, Safety1st said: It would be better to remove connection to PayPal at all and let members use any donate link as they wish. I mean link check modification and corresponding descriptions. In that case link check could be: /* Is the link not valid? */ if ( filter_var($val, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED | FILTER_FLAG_HOST_REQUIRED)=== FALSE ) { throw new \DomainException( 'tipAuthor_notValid' ); }
Safety1st Posted October 21, 2016 Posted October 21, 2016 I currently use IPS4 v4.1.16.1 with the plugin without any problems.
Ibragim Pupkevich Posted December 19, 2016 Posted December 19, 2016 Hi buddy, Thanks for this plugin. Very simple and exactly what I was looking for for along time. The only critical bug I found - there is no option to remove donation link in User CP. If I remove link and just leave input field empty, it says "wrong URL" and doesn't want to save changes. So, means I can only change URL to some other URL, but I can't remove it. Safety1st 1
Ibragim Pupkevich Posted January 20, 2017 Posted January 20, 2017 UPD: Please add verification for empty content of input field, otherwise it's impossible to remove link in UCP. /* Is the link not valid? */ if ( $val != '' && filter_var($val, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED | FILTER_FLAG_HOST_REQUIRED)=== FALSE ) { throw new \DomainException( 'tipAuthor_notValid' ); }
Tom Irons Posted January 22, 2017 Author Posted January 22, 2017 On 1/20/2017 at 5:28 PM, Ibragim Pupkevich said: UPD: Please add verification for empty content of input field, otherwise it's impossible to remove link in UCP. /* Is the link not valid? */ if ( $val != '' && filter_var($val, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED | FILTER_FLAG_HOST_REQUIRED)=== FALSE ) { throw new \DomainException( 'tipAuthor_notValid' ); } It's possible to remove the link via the UCP, I tested it and it does remove it. With that being said, there has been a change on how friendly urls are registered. I should have the update done soon. Joey_M 1
Ibragim Pupkevich Posted January 22, 2017 Posted January 22, 2017 @Tom Irons, please kindly add donation link to Downloads file view page! Please-please-please!
Recommended Posts