Shopify themes, liquid, logos, and UX
Hello,
I'm working on Shopify theme development step by step. When I build out my cart page and add items to it, it redirects my theme to a /cart/add url path, instead of the /cart path and I have to manually remove the /add part. Additionally, I can't see any items I add to the cart, but I can see any other liquid elements I add to my cart.liquid page. Any help or suggestions? Code below from my cart.liquid page:
{% form 'cart', cart %}
<h1> Cart </h1>
{% if cart.empty? %}
<p>Cart is empty</p>
{% else %}
{% for item in cart.items %}
<div>
<img src="{{ item.image | image_url }}" width="200" height="200" loading="lazy" />
<h2>{{ item.title }}</h2>
<p> {{ item.final_line_price | money }}</p>
<input name="updates[]" value="{{ item.quantity }}">
<a href="{{ item.url_to_remove }}">Remove</a>
</div>
{% endfor %}
<hr/>
{% endif %}
<p> Total: {{ cart.total_price | money }}</p>
<button type="submit" name="update"> Update</button>
<button type="submit" name="checkout"> Checkout</button>
{% endform %}
Code from my theme.liquid:
{% comment %} main connecting point for pages {% endcomment %} <html> <head> {% comment %} required {% endcomment %} {{ content_for_header }} </head> <body> {% comment %} Renders your sections or snippets. this renders your header snippet {% endcomment %} {% render 'header' %} {{ content_for_layout }} </body> <footer> {% render 'footer' %} </footer> </html>
Thank you for any help
User | RANK |
---|---|
75 | |
64 | |
62 | |
48 | |
44 |
We're excited to announce improvements to the threaded messaging experience in our communi...
By TyW May 31, 2023Thank you to everyone who participated in our AMA with Klaviyo. It was great to see so man...
By Jacqui May 30, 2023Photo by Marco Verch Sales channels on Shopify are various platforms where you can sell...
By Ollie May 25, 2023