New Shopify Certification now available: Liquid Storefronts for Theme Developers

To show Continue Shopping link on thank you page with custom checkout using Draft Order Api

Shinedezign
Shopify Expert
15 0 2

I am creating custom checkout using draft order api &  when customer complete order & reach thank you , continue shopping link is not visible .

 

while on same site if I do shopify default checkout ,  continue shopping link show on thank you page .

 

Is there any parameter we need to pass in draft order api ?

vikas verma
shine dezign infonet
Reply 1 (1)
Shinedezign
Shopify Expert
15 0 2

Well I got the answer by self 🙂  .. I am writing this to those who are also looking for same :-

 

We can write below code in  settings -> checkout -> Additional scripts  

 

<a class="custom_thank_shipping" href="https://abc.myshopify.com/" >Continue Shopping</a>
<style>a.step__footer__continue-btn.btn { display: none;}
.custom_thank_shipping{position: absolute;color: #fff;background: #197bbd;bottom: 20%;padding: 10px;}
@media(max-width:767px){ .custom_thank_shipping { position: fixed; bottom: 0; padding: 13px 0; z-index: 999; width: 100%; left: 0; text-align: center; }
}
</style>

vikas verma
shine dezign infonet