Any ideas guys ?
I was really hoping to publish the store today.
this is my cart.liquid template :
<!-- /templates/cart.liquid -->
{% comment %}
For info on test orders:
{% endcomment %}
<section>
<div class="content-pages">
<div class="container">
<div class="content-about content-cart-page woocommerce">
<h2 class="title30 dosis-font text-uppercase font-bold dark">{{ 'cart.general.title' | t }}</h2>
{% if cart.item_count > 0 %}
<div id="bold-cart-msg"></div>
<form action="/cart" method="post" novalidate>
<div class="table-responsive">
<table class="shop_table cart table">
<thead>
<tr>
<th class="product-remove"> </th>
<th class="product-thumbnail"> </th>
<th class="product-name">{{ 'cart.label.product' | t }}</th>
<th class="product-price">{{ 'cart.label.price' | t }}</th>
<th class="product-quantity">{{ 'cart.label.quantity' | t }}</th>
<th class="product-subtotal">{{ 'cart.label.total' | t }}</th>
</tr>
</thead>
{% if cart.item_count > 0 %}
<form action="/cart" method="post" novalidate>
<tbody>
{% for item in cart.items %}
<tr class="cart_item">
<td class="product-remove">
<a class="remove" href="/cart/change?line={{ forloop.index }}&quantity=0"><i class="fa fa-trash"></i></a>
</td>
<td class="product-thumbnail">
<a href="{{ item.url }}"><img src="{{ item | img_url: 'small' }}" alt="{{ item.title | escape }}"/></a>
</td>
<td class="product-name" data-title="Product">
<a href="{{ item.url }}">{{ item.product.title }}</a>
{% unless item.variant.title contains 'Default' %}
<small style="display: block; color: #959595;">{{ item.variant.title }}</small>
{% endunless %}
{% if settings.cart_vendor_enable %}
<p>{{ item.vendor }}</p>
{% endif %}
</td>
<td class="product-price" data-title="Price">
<span class="amount"><span class="Bold-theme-hook-DO-NOT-DELETE bold_cart_item_price" style="display:none !important;"></span>{{ item.price | money }}</span>
</td>
<td class="product-quantity" data-title="Quantity">
<input type="number" name="updates[]" id="updates_{{ item.id }}" value="{{ item.quantity }}" min="0">
</td>
<td class="product-subtotal" data-title="Total">
<span class="amount"><span class="Bold-theme-hook-DO-NOT-DELETE bold_cart_item_total" style="display:none !important;"></span>{{ item.line_price | money }}</span>
</td>
</tr>
{% endfor %}
<tr>
<td class="actions" colspan="6">
<input type="submit" value="{{ 'cart.general.update' | t }}" name="update_cart" class="button bg-color">
</td>
</tr>
</tbody>
</form>
{% endif %}
</table>
</div>
<div class="cart-collaterals">
<div class="cart_totals ">
<h2>Cart Totals</h2>
<div class="table-responsive">
<table class="table">
<tbody>
<tr class="shipping">
<th>{{ 'cart.label.cart_note' | t }}</th>
<td>
<textarea name="note" class="input-full" id="CartSpecialInstructions" placeholder="{{ 'cart.general.note' | t }}">{{ cart.note }}</textarea>
</td>
</tr>
<tr class="order-total">
<th>{{ 'cart.label.total' | t }}</th>
<td><strong><span class="amount"><span class="Bold-theme-hook-DO-NOT-DELETE bold_cart_total" style="display:none !important;"></span>{{ cart.total_price | money }}</span></strong> </td>
</tr>
</tbody>
</table>
</div>
<div class="wc-proceed-to-checkout">
<a class="checkout-button button alt wc-forward bg-color" href="/checkout">{{ 'cart.general.checkout' | t }}</a>
</div>
</div>
</div>
</form>
{% else %}
{% comment %}
The cart is empty
{% endcomment %}
<p>{{ 'cart.general.empty' | t }}</p>
<p>{{ 'cart.general.continue_browsing_html' | t }}</p>
{% endif %}
</div>
</div>
</div>
<!-- End Content Pages -->
</section>