{% sw_extends '@Storefront/storefront/component/checkout/offcanvas-cart-summary.html.twig' %} {% block component_offcanvas_summary_cart_live_update %} {# Count visible items — exclude LOE internal credit line items #} {% 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 %} {% endblock %}