Ability to route post-checkout to an external URL

Currently, it is only possible to route to a Softr Page after a successful checkout.

“ON CHECKOUT” > “Page after payment” – a drop-down of internal pages.

This is limiting when integrating with external websites.

1 Like

Hey @drew0,

Will discuss with the team to see if this is possible to be done.

Thanks for the request.

thank you!

I have a temporary work-around in case others are interested.

I create a softr page, for example called /products. On that products page I add a code embed with:

<script>

   /* immediately redirect back to squarespace website */
   /* softr sometimes doesn't allow specifying an external link */

   window.location.replace("https://www.my-external-domain.com/products");
    
</script>

So as soon as the internal softr page loads, the user is redirected to my external page.

3 Likes

Thanks for sharing @drew0 :star_struck: