Help- checkout not working. Here is my checkout-button.liquid code:
<button type=“submit” name=“checkout” class=“btn btn–primary btn–checkout full {% if type == “page” %}cart__checkout{% endif %}” {% if disabled %}disabled{% endif %}>
{% unless settings.checkout_icon == blank %}
{{ settings.checkout_icon }}
{% endunless %}
{{ ‘cart.general.checkout’ | t }}
{%- if settings.cart_count_checkout -%}
{%- if type == “drawer” -%}
({{ cart.item_count }})
{%- else -%}
({{ cart.item_count }})
{%- endif -%}
{%- endif -%}
{%- if settings.cart_cost_checkout -%}
– {{ cart.total_price | money }}
{%- endif -%}
Is there any error?