Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Troubleshooting › eStore – when last payment is made via Paypal, eStore cancels them from Wishlist
Tagged: PayPal, subscription
- This topic has 7 replies, 3 voices, and was last updated 10 years, 10 months ago by
admin.
-
AuthorPosts
-
November 25, 2014 at 5:19 pm #11833
h4baine
MemberWhen my customers make their final payment they are being cancelled from Wishlist Member. Is this something with how Paypal cancels the subscription when they final payment is made? How do I address this?
November 25, 2014 at 6:12 pm #67007wzp
ModeratorThat is the way subscriptions work. After the subscription runs it’s course, PayPal sends a message to the plugin saying it has ended and thats when the account is deactivated.
Subscription payment options are good for ongoing payment. If you want to offer membership for a fixed term then maybe you could use the buy now option. For example: Buy 1 year membership. The following post has some info that maybe useful to you:
January 11, 2015 at 9:04 pm #67008h4baine
MemberI don’t want the access to Wishlist Member to end at the end of the payments. I want them to have lifetime access. How would I do this?
January 11, 2015 at 9:59 pm #67009wzp
ModeratorIs this the case of:
1. You are trying to offer lifetime memberships, using installment payments?
Or…
2. You are offering a subscription to a membership level, and want them to have lifetime limited access (at a reduced level), if they cancel the subscription?
January 13, 2015 at 3:25 pm #67010h4baine
Member1 – I am offering lifetime membership and using installment payments as a payment plan sort of thing. Once they pay in full, they should still have access.
January 14, 2015 at 1:44 am #67011admin
KeymasterNormally for a lifetime membership people create a ONE time buy now button. That way it never expires.
Given your situation, I can make it so eStore never calls the WishList member’s cancellation. Will that work for you?
January 17, 2015 at 3:50 pm #67012h4baine
MemberYes that would work. I’m just using the subscription to offer payment plans for my product.
January 18, 2015 at 11:12 pm #67013admin
KeymasterI have sent you an update via email so use that update. Then you will be able to add the following block of code to your functions.php file to override the cancel:
add_filter('eStore_wl_subsc_cancel', 'my_custom_cancel_override', 10, 2);
function my_custom_cancel_override($wl_cancel_override, $ipn_data){
$wl_cancel_override = 'no cancel';
return $wl_cancel_override;
} -
AuthorPosts
- You must be logged in to reply to this topic.