Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
I want to change the link and the text "Continue shopping" on the Thank you page. Basically I want a redirection to a specific page not to the Home Page (current link). How do I do that?
To change the redirect link for the "Continue Shopping" button on the "thank you page", simply go to the "Checkout" section of the Shopify admin settings and go to "Order status page" so you can enter a script for the "thank you page"
<script>
window.addEventListener('load', function() {
const checkoutLinkRedirect = document.querySelector('.step__footer a');
if (checkoutLinkRedirect) {
const newUrl = 'https://your_url.com';
checkoutLinkRedirect.href = newUrl;
}
});
</script>
Order status page additional scripts page is deprecated what is the alternative for this
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025