Articles on: Quotify

How can I redirect users to a custom thank you page?

You can set a custom redirect page via Quotify > Settings > Customization > Thank you redirect:



Can I redirect users to a different page based on their country?
Yes, this is possible using a Javascript snippet. You can add this via Quotify > Settings > Customization > Custom Javascript. In the example below, the user will be redirected to the page "thank-you-us" if the origin country is us, if it's a different country, the user will be redirected to "thank-you".


window.addEventListener('quotify:submitted', event => {

    if(config.country == 'us') {

        window.parent.location.href = "/thank-you-us";

        return;

    }

    window.parent.location.href = "/thank-you";

});

Updated on: 28/02/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!