Redirect after payment

I’m using the “Pricing & Plans” app by Wix. I’ve created a pricing plan where the customers can pay using the app. After a successful payment, I’d like to redirect the customer to a specific page.

How can I do that?

1 Like

Hi,

After the payment is processed check the purchase result and if wixPayStatus === “Successful” redirect using wix-location API. first import it:

import wixLocation from ‘wix-location’

Then use it to redirect:

wixLocation . to ( “/new-url” );

Good luck,
Asaf

Hi Asaf,

Thanks for your replay. I’ve checked the purchase result. Since I’m not good at coding. Would you please give me a snippet of the full code? That will be great for me.

Thanks!

Hey Asaf,

Your link’s dead.
How about this event https://www.wix.com/velo/reference/wix-paid-plans-backend/events/onplanpurchased ?
A code / screenshot demo of your approach would be much appreciated.

Thanks a lot

Hi @asafr

is there any chance to send the customer to a specific page after the purchase using the six pricing plan? I can’t code much, but need this feature. Thank you

HI @asafr I tried to create the code but did not work. Can you please share the code written? I want to redirect people after buying a $0 pricing plan. Thanks.

Hi @hello55714 , if you are using the Wix original Pricing plans app checkout, it is not possible to redirect with Velo.

You can use the wix-paid-plans API to build a custom purchase experience with Wix elements on the page. Redirects can be achieved as well by its payment status.