etstow
Forum Replies Created
-
Forum: Plugins
In reply to: [Donate Plus] [Plugin: Donate Plus] IPN not workingGlad it’s working for you. I gave up on it since it rounds the number if you edit the donation. $20.12 turned into $20.00 and I couldn’t change it.
Forum: Plugins
In reply to: [Donate Plus] [Plugin: Donate Plus] IPN not workingTry doing it live for like $1.00
You can reverse the PayPal charge if you have the login.
Forum: Plugins
In reply to: [Donate Plus] [Plugin: Donate Plus] IPN not workingIn the fix I posted above, titled “Here’s how I fixed it…”
Forum: Plugins
In reply to: [Donate Plus] [Plugin: Donate Plus] IPN not workingMulti site might be a problem. What if you try removing the “https://www.WEBSITE.COM” part so you have only “/wp-content/plugins/donate-plus/paypal.php”
Make sure to check both instances of the code.
Forum: Plugins
In reply to: [Plugin: Donate- Plus] Donate-Plus IPN FailuresHere’s how I fixed the IPN issue…
In the donate-plus.php file there are two instances of something like this…
str_replace(ABSPATH, trailingslashit(get_option('siteurl')), dirname(__FILE__)).'/paypal.php'
Replace the first so it looks something like this…
<?php _e('https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php','dplus');?>
The second should be…
$notify = 'https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php';
Hope that helps!
Forum: Plugins
In reply to: [Donate Plus] [Plugin: Donate Plus] Comments not displaying on WallI cannot figure out the comments problem.
Here’s how I fixed the IPN issue…
In the donate-plus.php file there are two instances of something like this…
str_replace(ABSPATH, trailingslashit(get_option('siteurl')), dirname(__FILE__)).'/paypal.php'
Replace the first so it looks something like this…
<?php _e('https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php','dplus');?>
The second should be…
$notify = 'https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php';
Hope that helps!
Forum: Plugins
In reply to: [Donate Plus] [Plugin: Donate Plus] IPN not workingHere’s how I fixed it…
In the donate-plus.php file there are two instances of something like this…
str_replace(ABSPATH, trailingslashit(get_option('siteurl')), dirname(__FILE__)).'/paypal.php'
Replace the first so it looks something like this…
<?php _e('https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php','dplus');?>
The second should be…
$notify = 'https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php';
Hope that helps!
Forum: Plugins
In reply to: Donate Plus – Paypal issue.Here’s how I fixed it…
In the donate-plus.php file there are two instances of something like this…
str_replace(ABSPATH, trailingslashit(get_option('siteurl')), dirname(__FILE__)).'/paypal.php'
Replace the first so it looks something like this…
<?php _e('https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php','dplus');?>
The second should be…
$notify = 'https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php';
Hope that helps!
Forum: Plugins
In reply to: Donate Plus IPN URL IssueI had the same problem too. I think it’s because it’s running a Windows Server. Is yours?
Here’s how I fixed it…
In the donate-plus.php there are two instances of this…
str_replace(ABSPATH, trailingslashit(get_option('siteurl')), dirname(__FILE__)).'/paypal.php'
Replace the first so it looks something like this…
<?php _e('https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php','dplus');?>
The second should be…
$notify = 'https://www.WEBSITE.COM/wp-content/plugins/donate-plus/paypal.php';
Hope that helps!