layout - Big Cartel Luna Theme. Cart will not proceed to checkout -
i'd love this.
on cart page, when "use stores layout" selected, when customers click "check out", keeps cycling on page , won't proceed checkout. known issue luna theme bigcartel.
the solution found says need uncheck it, when do, error message:
"you must include {{ head_content }} inside <head> tag of content"
this means there's no page formatting in code. i'm not big on code, though i've tried bit work, stealing code other pages in theme, , failed. (it's been years since i've messed code, big one).
thank you
here's code page:
<header class="product_header page_header"> <h1>cart</h1> <span class="dash"></span> </header> {% if cart.items != blank %} <form id="cart-form" {% unless cart.shipping.enabled or cart.discount.enabled %}class="no_options"{% endunless %} method="post" action="/cart" accept-charset="utf8"> <input type="hidden" name="utf8" value='✓'> <div id="cart_description"> <section id="cart_items"> <ul> {% item in cart.items %} <li class="cart_item {% unless item.product.has_default_option %}with_option{% endunless %}" id="item-{{ item.id }}"> <div class="item_image"><img src="{{ item.product.image | product_image_url: "thumb" }}" alt="photo of {{ item.name }}"></div> <dl> <dt><a href="{{ item.product.url }}">{{ item.product.name }}</a></dt> <dd class="item_price">{{ item.unit_price | money_with_sign }}{% if item.quantity > 1 %}<span class="item_quantity">(x{{ item.quantity }})</span>{% endif %}</dd> <dd class="quantity_input">{{ item | item_quantity_input }}</dd> {% unless item.product.has_default_option %}<dd class="item_option">{{ item.option.name }}</dd>{% endunless %} </dl> <a href="#" class="remove_item" title="remove item cart">remove item</a> </li> {% endfor %} </ul> </section> {% if cart.shipping.enabled or cart.discount.enabled %} <section id="cart_options"> <ul> {% if cart.shipping.enabled %} {% if cart.shipping.strict %} <li id="shipping_option"> <label for="country">shipping</label> {{ store.country | country_select }} {% if cart.shipping.pending %} {% if cart.country %} <span class="no_shipping">we don't ship {{ cart.country.name }}</span> {% endif %} {% endif %} </li> {% endif %} {% endif %} {% if cart.discount.enabled %} <li id="cart_discount" class="cart_item"> {% if cart.discount.pending %} <label id="cart_discount_label" for="cart_discount_code">discount</label> {{ cart.discount | discount_code_input }} {% elsif cart.discount.free_shipping %} <label for="cart_discount_code">discount</label> <p>{{ cart.discount.name }}</p> {% else %} <label for="cart_discount_code">discount</label> <p>{{ cart.discount.name }}</p> {% endif %} </li> {% endif %} </ul> <div class="cart-update"> <button id="update-btn-footer" class="update-btn button disabled" name="update" type="submit" title="update cart total"><span>update total</span></button> </div> </section> {% else %} <section id="cart_options" class="solo_update"> <div class="cart-update"> <button id="update-btn-footer" class="update-btn button disabled" name="update" type="submit" title="update cart total"><span>update total</span></button> </div> </section> {% endif %} </div> <section id="cart_summary"> <ul> <li> <h3>items</h3> <span>{{ cart.subtotal | money_with_sign }}</span> </li> {% if cart.shipping.enabled %} <li id="cart-shipping-tax"> <h3>shipping</h3> {% if cart.shipping.pending %} {% if cart.country %} <span class="shipping-amount">select country</span> {% else %} <span class="shipping-amount">select country</span> {% endif %} {% else %} <span class="shipping-amount">{{ cart.shipping.amount | money_with_sign }}</span> {% endif %} </li> {% else %} <li id="cart-shipping-tax" class="not_set"> <h3>shipping</h3> <span>applicable fees apply</span> </li> {% endif %} {% if cart.discount.enabled %} {% if cart.discount.pending %} {% elsif cart.discount.free_shipping %} <li> <h3>discount</h3> <span>free shipping!</span> </li> {% else %} <li> <h3>discount</h3> <span>-{{ cart.discount.amount | money_with_sign }}</span> </li> {% endif %} {% endif %} <li id="cart_total"> <h3>total</h3> <h2>{{ cart.total | money_with_sign }}</h2> </li> </ul> <button id="checkout-btn" class="button" type="submit" title="checkout">checkout</button> </section> </form> {% else %} <div id="cart_empty"> <p>your cart empty! sounds time <a href="/">start shopping</a>.</p> </div> {% endif %}
thanks!
there's not known issues luna theme code prevents customers being able check out - shouldn't need edit settings or change code.
it sounds custom domain might setup incorrectly iframe though, known cause problems cart page redirecting checkout. can test using storename.bigcartel.com url vs. custom domain see if case.
since isn't related theme, you'll want in touch big cartel support directly , should able troubleshoot further.
Comments
Post a Comment