Hallo und guten Tag an das Forum :-),
ich hatte gestern versucht die Länge der Artikelbezeichnung im Warenkorb (Offcanvas) von Shopware zu verändern. Hat jemand eine Idee welche Datei dafür zuständig ist…?
Danke und beste Grüße, Kai
storefront/component/checkout/offcanvas-item.html.twig
{% block component_offcanvas_product_label %}
<div class="cart-item-details">
{% if type == 'product' %}
<a href="{{ seoUrl('frontend.detail.page', {'productId': referencedId}) }}"
class="cart-item-label"
title="{{ label }}">
{{ quantity }}{{ "checkout.quantityTimes"|trans|sw_sanitize }} {{ label|u.truncate(60, '...', false) }}
</a>
{% else %}
<div class="cart-item-label">
{{ label|u.truncate(60, '...', false) }}
</div>
{% endif %}
</div>
{% endblock %}