Solved

There is no button to return to store after payment is made

Noctis
Tourist
30 0 0

no return to shop.png

 

There is no clickable button to return to the store after payment is made.

The only clickable button is a "cancel" button which comes from an app I installed to let customers cancel their order if they want to.

Anyone can help?

Accepted Solution (1)
tim
Shopify Expert
3274 235 1183

This is an accepted solution.

Another option, even simpler is to go to themes click Actions=>Edit language, select "Checkout" tab and find "Contact us html", put the following there:

<a class=btn href=/collections/all>Continue Shopping</a>

Untitled.jpeg 

And this will produce a button like this:

Untitled 2.jpeg

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.

View solution in original post

Replies 7 (7)

diego_ezfy
Shopify Partner
2958 568 890

@Noctis 

Hello, 

This page, popularly known as the thank you page, is not customizable. 

Kind regards,
Diego

◦ Follow my blog & youtube for coding tutorials.
◦ Replace apps with copy/paste code snippets and save money.

Andrew
Shopify Staff (Retired)
1746 173 317

Hi @Noctis,

Hyde here from Shopify. Great question!

If you're using a Shopify theme then you should be able to click on the store logo in the top left to return to the store:

21-01-b7h2t-kr9k2

 

Of course, if you're using a third-party theme, or if you've edited the theme code, this function may not work.

Let me know if that helps or if you're encountering further difficulties.

All the best, Hyde.

To learn more visit the Shopify Help Center or the Community Blog.

tim
Shopify Expert
3274 235 1183

Actually, the thank you page, which is also an Order status page, is customizable (to a limit) (otherwise how do Apps do it?):

https://help.shopify.com/en/manual/orders/status-tracking 

https://help.shopify.com/en/manual/orders/status-tracking/customize-order-status/order-status-javasc... 

So you can easily use an additional script similar to this

{% if first_time_accessed %}
 <script>
      Shopify.Checkout.OrderStatus.addContentBox(
       '<h2>Anything else??</h2>', 
       '<p>Please use the button below</p><br>'+
      '<a href="/collections/all" class="btn">Continue shopping"</a>'
      )
 </script>
{% endif %}

 to get this:

Untitled.jpeg

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
Noctis
Tourist
30 0 0

Unfortunately, the store logo is not clickable...

My store is in test mode now so you can try to place an order using a 4242424242424242 credit card number and see the problem...

thanks!

tim
Shopify Expert
3274 235 1183

This is an accepted solution.

Another option, even simpler is to go to themes click Actions=>Edit language, select "Checkout" tab and find "Contact us html", put the following there:

<a class=btn href=/collections/all>Continue Shopping</a>

Untitled.jpeg 

And this will produce a button like this:

Untitled 2.jpeg

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
Noctis
Tourist
30 0 0

This works perfectly.

Thanks for the help. Luckily you came across this post, otherwise I would have trusted that guy saying the page can't be customized...

tim
Shopify Expert
3274 235 1183

Well, it's the only page of checkout which can actually be modified (though in a this limited way), so people often overlook it.

And, this trick of using the fields of language which has "html" in their name for more than just a couple of words is underestimated too.

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.