{% sw_extends '@Storefront/storefront/component/checkout/offcanvas-cart.html.twig' %} {% block component_offcanvas_cart_item %} {% if lineItem.id != 'loe_shipping_threshold_credit' and lineItem.id != 'loe_previous_order_credit' %} {{ parent() }} {% endif %} {% endblock %} {% block component_offcanvas_cart_header_item_counter %} {% set loeVisibleCount = 0 %} {% for li in page.cart.lineItems %} {% if li.id != 'loe_shipping_threshold_credit' and li.id != 'loe_previous_order_credit' %} {% set loeVisibleCount = loeVisibleCount + 1 %} {% endif %} {% endfor %} {% if loeVisibleCount > 0 %}
{{- 'checkout.itemCounter'|trans({'%count%': loeVisibleCount})|sw_sanitize -}}
{% endif %} {% endblock %}