Shopify checkout problems: Patches by theme

Shopify checkout problems: Patches by theme

Theme List


 

Brooklyn 

File: cart.liquid (template)

<form action="{{ routes.cart_url }}" method="post" novalidate class="cart">

 change to 

 <form action="/checkout" method="post" novalidate class="cart">

 


 

 Dawn

File: main-cart-items (section) 

<form action="{{ routes.cart_url }}" class="cart__contents critical-hidden" method="post" id="cart">

change to

<form action="/checkout" class="cart__contents critical-hidden" method="post" id="cart">


Debutify

File: cart-page.liquid (snippet)

<form id="cartForm"
class="cart-form"
action="{{ routes.cart_url}}"
method="post"
novalidate>

Change to

<form id="cartForm"
class="cart-form"
action="/checkout"
method="post"
novalidate>


Impulse

This theme was fixed by removing the Google Tags/gtag.js code without making changes to the cart itself.


Prestige

File: cart-template.liquid (section)

<form action="{{ routes.cart_url }}" method="POST" class="Cart Cart--expanded" novalidate>

change to

<form action="/checkout" method="POST" class="Cart Cart--expanded" novalidate>

 


 

Venue

File: main-cart.liquid (section)

<form action="{{ routes.cart_url }}" method="post" novalidate class="cart">

change to

<form action="/checkout" method="post" novalidate class="cart">
Back to blog