diff --git a/src/pretix/presale/templates/pretixpresale/event/order.html b/src/pretix/presale/templates/pretixpresale/event/order.html
index 4880010cf8..7a531c165b 100644
--- a/src/pretix/presale/templates/pretixpresale/event/order.html
+++ b/src/pretix/presale/templates/pretixpresale/event/order.html
@@ -288,8 +288,10 @@
{% trans "Company" %}
{{ order.invoice_address.company }}
{% endif %}
- {% trans "Name" %}
- {{ order.invoice_address.name }}
+ {% if invoice_address_asked or request.event.settings.invoice_name_required %}
+ {% trans "Name" %}
+ {{ order.invoice_address.name }}
+ {% endif %}
{% if invoice_address_asked %}
{% trans "Address" %}
{{ order.invoice_address.street|linebreaksbr }}