Allen Snook
Forum Replies Created
-
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Delete PayPal button imageHi! The PayPal donate button should probably not be styled away – as I understand it, PayPal requires it. For more info, please see
https://www.paypal.com/us/cgi-bin/?cmd=_donate-intro-outside
– this is where I got the button image from.
Cheers…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Email notifications don't workOne more question – are you able to receive emails from your WordPress installation itself? (i.e. when a comment needs moderation, or a user resets their password)
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Email notifications don't workHi!
Sorry I haven’t gotten to this yet – I will add some debug logging for the test email function and see if we can capture the error.
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Sales tax charged on donationsHmmm…. this is most likely because PayPal is adding it based on your PayPal profile setting. Please see
Cheers…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] PayPal IPN?The PayPal IPN is passed by Seamless Donations to PayPal – there should be no need to specify it at PayPal – I don’t know why some people are needing to specify it.
The IPN URL would be something like (substitute your own domain name of course):
http://www.mydomainname.org/wp-content/plugins/seamless-donations/dgx-donate-paypalstd-ipn.php
Again – it should not be necessary to specify it
Cheers…
…Allen
Not going to go premium, just going to roll features and fixes into this version. I’ve been pretty busy lately, but will start adding new stuff soon!
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Weird text and donate button won't workHi Micah!
Now I think I understand what is happening – it looks like code was pasted into your business’ email address field at some point on the settings page. I will upload a new version to check for this condition sometime this week, but in the meantime, if you edit dgx-donate-paypalstd.php, and look for this line
$payPalEmail = get_option(‘dgx_donate_paypal_email’);
keep that line, and add these lines after it to clear any bad setting in that field
if ( ! is_email( $payPalEmail ) ) {
$payPalEmail = “”;
}Let me know if that solves the problem and lets you enter your PayPal email address. Then your donation form should work.
Cheers,
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Locks up and never forwards to PayPalI took a look and I see what you mean – I don’t know what would be in my code that would cause repeated calls like that – the posting to the backend – I do see at least one plugin emitting javascript for that page besides seamless donations – would you try disabling all other plugins first and see if the problem goes away?
Don’t forget to clear your browser’s cache after turning off all the plugins so you don’t accidentally test with cached javascript.
Then, re-enable them, one at a time, and let me know if a particular plugin causes the problem to begin again.
Thanks!
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Ajax errror thrown when using SearchSorry about this – I have rolled back the change. It was getting hit by any ajax error anywhere on a site – not just from seamless donations.
I just committed a new version 2.1.7 where I rolled back the change.
The next version will only look for ajax errors on seamless donation requests.
Thanks for the heads up!
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Ajax errror thrown when using SearchSorry about this – I have rolled back the change. It was getting hit by any ajax error anywhere on a site – not just from seamless donations.
I just committed a new version 2.1.7 where I rolled back the change.
The next version will only look for ajax errors on seamless donation requests.
Thanks for the heads up!
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Non-editable Thank You Page URLHi!
That file should still be editable – but I don’t recommend that – since your changes would get blown away by each update.
I just tested the built-in thanks URL and it worked (not a 404) – can you please reply with the URL in the browser’s address bar when you see a 404?
Thanks…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] IssuesInteresting – what would the wording of the gift restriction be?
I’ve added the limit the states option to the future feature list.
Cheers…
…Allen
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Weird text and donate button won't workHi Micah!
I think you might have a fragment of an old donation form below the dgx-donate shortcode on that page. Please check that page and see if that is the case.
I added more error displays to the plugin – so that if, when you click the button, an ajax error is happening, it will display that.
But first, be sure to remove any other forms from that page in the editor for that page – partial other forms will likely keep things from working correctly too.
Cheers…
…Allen