Website: efsstore.com.au
Template: Venture
Hey guys, I am trying to achieve a better experience for mobile customers on the cart. How would you make it more user friendly?
Website: efsstore.com.au
Template: Venture
Hey guys, I am trying to achieve a better experience for mobile customers on the cart. How would you make it more user friendly?
{%- assign totalCompareAtPrice = 0 -%}
{%- assign totalSavings = 0 -%}
{% if cart.item_count > 0 %}
{% include ‘banana-stand-cart-top-container’ %}
{% for item in cart.items %} {% endfor %}| {{ 'cart.label.product' | t }} | Item Price | {{ 'cart.label.quantity' | t }} | {{ 'cart.label.total' | t }} | |
|---|---|---|---|---|
|
|
{% unless item.variant.title contains ‘Default’ %}
{% for option in item.product.options %}
{{ option }}: {{ item.variant.options[forloop.index0] }}
{% endunless %}
{% endfor %} {% comment %} Line item properties come in as having two parts. The first part will be passed with the default form, For more info on line item properties, visit:
{% for p in item.properties %}
{% unless p.last == blank %}
{{ p.first }}:
{% endif %}
{% comment %} |
{%- if item.original_price != item.final_price -%}
{%- if item.line_level_discount_allocations != blank -%}
|
{{ 'cart.label.quantity' | t }}
|
{%- assign itemCompareAtPrice = item.variant.compare_at_price -%}
{%- if itemCompareAtPrice == nil -%}
{%- assign itemCompareAtPrice = item.original_price -%}
{%- endif -%}
{%- assign totalLineCompareAtPrice = itemCompareAtPrice | times: item.quantity -%}
{%- assign totalCompareAtPrice = totalCompareAtPrice | plus: totalLineCompareAtPrice -%}
{%- if item.original_line_price != item.final_line_price -%}
{%- assign totalLineSavings = item.original_line_price | minus: item.final_line_price -%}
{%- assign totalSavings = totalSavings | plus: totalLineSavings -%}
|
|
{{ 'cart.general.remove' | t }}
{{ 'cart.label.quantity' | t }}
{{ 'cart.general.update' | t }}
|
||||
{%- if cart.cart_level_discount_applications != blank -%}
{%- if totalSavings > 0 -%}
{%- capture taxes_shipping_checkout -%}
{%- if shop.taxes_included and shop.shipping_policy.body != blank -%}
{{ ‘cart.general.taxes_included_and_shipping_policy_html’ | t: link: shop.shipping_policy.url }}
{%- elsif shop.taxes_included -%}
{{ ‘cart.general.taxes_included_but_shipping_at_checkout’ | t }}
{%- elsif shop.shipping_policy.body != blank -%}
{{ ‘cart.general.taxes_and_shipping_policy_at_checkout_html’ | t: link: shop.shipping_policy.url }}
{%- else -%}
{{ ‘cart.general.taxes_and_shipping_at_checkout’ | t }}
{%- endif -%}
{%- endcapture -%}
{% if additional_checkout_buttons %}
{% endif %}
{{ 'cart.general.empty' | t }}
{{ 'cart.general.cookies_required' | t }}
{% schema %}
{
“name”: {
“de”: “Warenkorb-Seite”,
“en”: “Cart page”,
“es”: “Página de carrito”,
“fr”: “Page du panier”,
“it”: “Pagina del carrello”,
“ja”: “カートページ”,
“nl”: “Winkelwagenpagina”,
“pt-BR”: “Página do carrinho”,
“zh-CN”: “购物车页面”,
“zh-TW”: “購物車頁面”
},
“settings”: [
{
“type”: “checkbox”,
“id”: “cart_notes_enable”,
“label”: {
“de”: “Warenkorb-Notifikationen erlauben”,
“en”: “Enable cart notes”,
“es”: “Habilitar notas de carrito”,
“fr”: “Activer les notes de panier”,
“it”: “Abilita note carrello”,
“ja”: “カートメモを有効にする”,
“nl”: “Notities voor winkelwagen inschakelen”,
“pt-BR”: “Ativar observações sobre o carrinho”,
“zh-CN”: “启用购物车备注”,
“zh-TW”: “啟用購物車備註”
},
“default”: false
}
]
}
{% endschema %}