How to automatically assign a free plan to users who abandon checkout in Memberstack with Stripe? Answered
In memberstack, I have paid plans as well as a free plan I've set up. I've set up the pricing table to use all the correct attributes and the flows all work if users complete the checkout in stripe.
I'm finding that in Memberstack any user that drops out of checkout just has no plan assigned to them, ideally I'd like users to have the free plan automatically applied to avoid this issue.
I tried adding the data-ms-plan:add attribute to the paid plan buttons where I've also got the data-ms-price:update attribute but that doesn't seem to achieve the aim.
How can I resolve this issue?
Comments
1 comment
Hi Benjamin,
You can use an automation tool like Make or Zapier to automatically add the free plan if the user doesn't complete the checkout process.
Alternatively, you can place the following code just before the </body> of the page they land on after logging in (e.g., the dashboard). This code will first check if the user already has the free plan, and if not, it will add it automatically.
Please make sure to replace
'YOUR_FREE_PLAN_ID'with your actual free plan ID:Please sign in to leave a comment.