Exploring a free trial limitation #825
Open
+181
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is an initial exploration to limit Free trials to one per user per product
Description
The problem
This has been previously descibed here.
People can abuse Free trials by cancelling and purchasing the same subscription again multiple times. The only way to prevent that is to set the limit to "1 subscription of any status" per user. But that's not a great solution, for the reasons described in the feature request above, but also because it creates additional friction for legit users who want to resubscribe to a subscription that they had in the past but that is currently active.
In these cases, they need to figure out that they have to go to My Account, find that cancelled subscription and click "Resubscribe" from there.
It would be much more straight forward if we limited the free trial to only one per product per user.
The exploration
This is just an initial exploration, with some amount of AI generated code to help me bootstrap the idea.
This will add a global setting to define whether this limitation is enabled and then:
Exploration limitations
I'm pretty sure this is not the best way to do things, but it demonstrates the idea.
I'm not super familiar with all the Woo flows, and I don't believe doing the cart manipulation on the fly in the checkout page is the way to go... would love to have some guidance.
Also, the way I'm manipulating the cart is totally wrong. I'm changing the trial period of the product itself, and not the line item in the cart... but is serves the purposes of testing how the flow looks.
Note: I've tried using
wcs_set_objects_property
with the option to not save, but then the Stripe checkout plugin would do a request to get the cart details and would end up overriding the changes...Note 2: I also trying doing the logic on the
maybe_set_free_trial
method inWC_Subscriptions_Synchroniser
class but that didn't work...How to test this PR