Wie behebe ich das problem in meienm code?
Ich habe ein problem und zwar mein in meinem shopify main cart footer. ich kann keine produkte aus dem warenkorb entfernen ich habe extra jetzt wieder da standart theme genommen aber es funktioniert nicht {{ 'component-cart.css' | asset_url | stylesheet_tag }} {{ 'component-totals.css' | asset_url | stylesheet_tag }} {{ 'component-price.css' | asset_url | stylesheet_tag }} {{ 'component-discounts.css' | asset_url | stylesheet_tag }} {%- style -%} .section-{{ section.id }}-padding { padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px; padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px; } @media screen and (min-width: 750px) { .section-{{ section.id }}-padding { padding-top: {{ section.settings.padding_top }}px; padding-bottom: {{ section.settings.padding_bottom }}px; } } {%- endstyle -%} <div class="gradient color-{{ section.settings.color_scheme }}{% if cart == empty %} is-empty{% endif %}" id="main-cart-footer" data-id="{{ section.id }}" > <div class="page-width"> <div class="cart__footer isolate section-{{ section.id }}-padding"> <div class="cart__blocks"> {% for block in section.blocks %} {%- case block.type -%} {%- when '@app' -%} {% render block %} {%- when 'subtotal' -%} <div class="js-contents" {{ block.shopify_attributes }}> <div> {%- if cart.cart_level_discount_applications.size > 0 -%} <ul class="discounts list-unstyled" role="list" aria-label="{{ 'customer.order.discount' | t }}"> {%- for discount in cart.cart_level_discount_applications -%} <li class="discounts__discount discounts__discount--position"> {{- 'icon-discount.svg' | inline_asset_content -}} {{ discount.title | escape }} (-{{ discount.total_allocated_amount | money }}) </li> {%- endfor -%} </ul> {%- endif -%} </div> <div class="totals"> <h2 class="totals__total">{{ 'sections.cart.estimated_total' | t }}</h2> <p class="totals__total-value">{{ cart.total_price | money_with_currency }}</p> </div> <small class="tax-note caption-large rte"> {%- if cart.duties_included and cart.taxes_included -%} {%- if shop.shipping_policy.body == blank -%} {{ 'sections.cart.duties_and_taxes_included_shipping_at_checkout_without_policy' | t }} {%- else -%} {{ 'sections.cart.duties_and_taxes_included_shipping_at_checkout_with_policy_html' | t: link: shop.shipping_policy.url }} {%- endif -%} {%- elsif cart.duties_included == false and cart.taxes_included -%} {%- if shop.shipping_policy.body == blank -%} {{ 'sections.cart.taxes_included_shipping_at_checkout_without_policy' | t }} {%- else -%} {{ 'sections.cart.taxes_included_shipping_at_checkout_with_policy_html' | t: link: shop.shipping_policy.url }} {%- endif -%} {%- elsif cart.duties_included and cart.taxes_included == false -%} {%- if shop.shipping_policy.body == blank -%} {{ 'sections.cart.duties_included_taxes_at_checkout_shipping_at_checkout_without_policy' | t }} {%- else -%} {{ 'sections.cart.duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html' | t: link: shop.shipping_policy.url }} {%- endif -%} {%- elsif cart.duties_included == false and cart.taxes_included == false -%} {%- if shop.shipping_policy.body == blank -%} {{ 'sections.cart.taxes_at_checkout_shipping_at_checkout_without_policy' | t }} {%- else -%} {{ 'sections.cart.taxes_at_checkout_shipping_at_checkout_with_policy_html' | t: link: shop.shipping_policy.url }} {%- endif -%} {%- endif -%} </small> </div> {%- else -%} <div class="cart__ctas" {{ block.shopify_attributes }}> <button type="submit" id="checkout" class="cart__checkout-button button" name="checkout" {% if cart == empty %} disabled {% endif %} form="cart" > {{ 'sections.cart.checkout' | t }} </button> </div> {%- if additional_checkout_buttons -%} <div class="cart__dynamic-checkout-buttons additional-checkout-buttons"> {{ content_for_additional_checkout_buttons }} </div> {%- endif -%} {%- endcase -%} {% endfor %} <div id="cart-errors"></div> </div> </div> </div> </div> {% schema %} { "name": "t:sections.main-cart-footer.name", "class": "cart__footer-wrapper", "settings": [ { "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", "default": "scheme-1" }, { "type": "header", "content": "t:sections.all.padding.section_padding_heading" }, { "type": "range", "id": "padding_top", "min": 0, "max": 100, "step": 4, "unit": "px", "label": "t:sections.all.padding.padding_top", "default": 40 }, { "type": "range", "id": "padding_bottom", "min": 0, "max": 100, "step": 4, "unit": "px", "label": "t:sections.all.padding.padding_bottom", "default": 40 } ], "blocks": [ { "type": "subtotal", "name": "t:sections.main-cart-footer.blocks.subtotal.name", "limit": 1 }, { "type": "buttons", "name": "t:sections.main-cart-footer.blocks.buttons.name", "limit": 1 }, { "type": "@app" } ] } {% endschema %}