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?
Solved! Go to the solution
@Noctis
Hello,
This page, popularly known as the thank you page, is not customizable.
Kind regards,
Diego
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:
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.
Hyde | Social Care @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit the Shopify Help Center or the Shopify Blog
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
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:
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>
And this will produce a button like this:
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.
User | Count |
---|---|
25 | |
24 | |
24 | |
19 | |
13 |