Das habe ich jetzt mal in der Datei „base.html.twig“ geändert und trotzdem wird "Sehr geehrte " angezeigt. Wo hast du es denn angepasst?
Nachtrag:
Habe die falsche base.html.twig genommen. Wenn ihr das Plugin zum Erweitern der Templates benutzt, dann müsst ihr auf den Reiter „Dokumente“ gehen und in die base.html.twig folgenden Code platzieren:
{% block document_recipient %}
{# @deprecated tag:v6.5.0 - Will be removed #}
{% block document_recipient_sender %}{% endblock %}
{% if billingAddress.company %}
{{ billingAddress.company }}<br>
{% endif %}
{% if customer.customer.vatIds and billingAddress.country.companyTax.getEnabled and config.displayAdditionalNoteDelivery and billingAddress.country.id in config.deliveryCountries %}
{{ 'document.vatId'|trans({'%vatId%': customer.customer.vatIds|first})|sw_sanitize }}<br>
{% endif %}
{{ billingAddress.firstName }} {{ billingAddress.lastName }}<br>
{{ billingAddress.street }}<br>
{% if billingAddress.additionalAddressLine1 %}
{{ billingAddress.additionalAddressLine1 }}<br>
{% endif %}
{% if billingAddress.additionalAddressLine2 %}
{{ billingAddress.additionalAddressLine2 }}<br>
{% endif %}
{{ billingAddress.zipcode }} {{ billingAddress.city }}<br>
{{ billingAddress.country.name }}<br>
{% endblock %}