Hello!
I am working with Vegist theme on www.provisionswholesale.coop
When we switched over to this theme we lost our ability to have notes on our cart. I was able to find the handy dandy place where you can choose notes or shipping calculations in the theme customization space, however, it still does not show up. The shipping calculations do, so I know that at least I am not totally missing the boat, but there are no notes showing up.
If anyone has an idea of why it is not showing up, I would be super grateful.
Here is the cart theme liquid, my hope is it is one small tweak and viola’ it will work!
{%- if cart.item_count > 0 -%}
{{ section.settings.cart_title }}
{{ cart.item_count }}
{{ section.settings.cart_item_title }}
{% for item in cart.items %}
-
{{ item.product.title | truncate: 30 }}
{%- if item.variant.option1 -%}
{{ item.product.options_with_values[0].name }}:
{{ item.variant.option1 }}
{%- endif -%}
{%- if item.variant.option2 -%}
{{ item.product.options_with_values[1].name }}:
{{ item.variant.option2 }}
{%- endif -%}
{%- if item.variant.option3 -%}
{{ item.product.options_with_values[2].name }}:
{{ item.variant.option3 }}
{%- endif -%}
{% if section.settings.cart_vendor_enable %}
{{ item.vendor }}
{% endif %}
{{ item.price | money }}
-
-
{{ item.line_price | money }}
{% endfor %}
{% comment %}
Special instructions
{{ cart.note }}
{% endcomment %}
{{ section.settings.cart_subtotal_title }}
{{ cart.total_price | money }}
{%- if section.settings.cart_feature == ‘shipping_calculator’ -%}
{%- include ‘cart-shipping-calculator’ -%}
{%- endif -%}
{{ section.settings.cart_total_title }}
{{ cart.total_price | money }}
{%- if cart.total_discounts > 0 -%}
{% assign savings = cart.total_discounts | money %}
{{ 'cart.general.savings_html' | t: price: savings }}
{%- endif -%}
{%- else -%}
{{ section.settings.cart_empty_title1 }}
{{ section.settings.cart_empty_title2}}
{{ section.settings.cart_empty_title3 }}
{{ section.settings.cart_empty_title4 }}
{{ section.settings.cart_continue_title }} {{ section.settings.here_title }}
{%- endif -%}
{% schema %}
{
"name": "Cart Page",
"settings": [
{
"type": "header",
"content": "Title"
},
{
"type": "text",
"id": "cart_title",
"label": "Cart title",
"default": "My Cart:"
},
{
"type": "text",
"id": "cart_item_title",
"label": "Item Title",
"default": "Item"
},
{
"type": "text",
"id": "cart_item_remove",
"label": "Remove Title",
"default": "Remove"
},
{
"type": "text",
"id": "continue_shopping_title",
"label": "Continue Shopping Button Title",
"default": "Continue Shopping"
},
{
"type": "text",
"id": "clear_cart_title",
"label": "Clear Cart Button Title",
"default": "Clear Cart"
},
{
"type": "checkbox",
"id": "cart_vendor_enable",
"label": "Show Product Vendor",
"default": false
},
{
"type": "header",
"content": "Cart Note / Shipping Calculator"
},
{
"type": "radio",
"id": "cart_feature",
"label": "Show Any One",
"options": [
{
"value": "shipping_calculator",
"label": "Shipping Calculator"
},
{
"value": "cart_note",
"label": "Cart Note"
}
],
"default": "shipping_calculator"
},
{
"type": "text",
"id": "shipping_calculator_heading",
"label": "Shipping Calculator Title",
"default": "Shipping Charge"
},
{
"type": "text",
"id": "shipping_calculator_button_title",
"label": "Shipping Calculator Button Title",
"default": "Calculate shipping"
},
{
"type": "text",
"id": "cart_note_title",
"label": "Cart Note Title",
"default": "Special instructions for seller"
},
{
"type": "header",
"content": "Cart Totals"
},
{
"type": "text",
"id": "cart_subtotal_title",
"label": "Cart Subtotal Title",
"default": "Subtotal"
},
{
"type": "text",
"id": "cart_total_title",
"label": "Cart Total Title",
"default": "Total"
},
{
"type": "text",
"id": "checkout_button_title",
"label": "Checkout Button Title",
"default": "Proceed to Checkout"
},
{
"type": "header",
"content": "Cart Empty"
},
{
"type": "text",
"id": "cart_empty_title1",
"label": "Cart Empty Title1",
"default": "Your"
},
{
"type": "text",
"id": "cart_empty_title2",
"label": "Cart Empty Title2",
"default": "cart"
},
{
"type": "text",
"id": "cart_empty_title3",
"label": "Cart Empty Title3",
"default": "is currently"
},
{
"type": "text",
"id": "cart_empty_title4",
"label": "Cart Empty Title4",
"default": "empty!"
},
{
"type": "text",
"id": "cart_continue_title",
"label": "Continue Browsing Title",
"default": "Continue browsing"
},
{
"type": "text",
"id": "here_title",
"label": "Here Title",
"default": "here"
}
]
}
{% endschema %}