diff --git a/src/pretix/base/settings.py b/src/pretix/base/settings.py
index 897986150d..1b1c3cbce4 100644
--- a/src/pretix/base/settings.py
+++ b/src/pretix/base/settings.py
@@ -1195,7 +1195,20 @@ DEFAULTS = {
help_text=_("If you ask for a phone number, explain why you do so and what you will use the phone number for.")
)
},
-
+ 'show_checkin_number_user': {
+ 'default': 'False',
+ 'type': bool,
+ 'serializer_class': serializers.BooleanField,
+ 'form_class': forms.BooleanField,
+ 'form_kwargs': dict(
+ label=_("Show number of check-ins to customer"),
+ help_text=_('With this option enabled, your customers will be able how many times they entered '
+ 'the event. This is usually not necessary, but might be useful in combination with tickets '
+ 'that are usable a specific number of times, so customers can see how many times they have '
+ 'already been used. Exits or failed scans will not be counted, and the user will not see '
+ 'the different check-in lists.'),
+ )
+ },
'ticket_download': {
'default': 'False',
'type': bool,
diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py
index 746b3268d8..87a1ee2479 100644
--- a/src/pretix/control/forms/event.py
+++ b/src/pretix/control/forms/event.py
@@ -523,6 +523,7 @@ class EventSettingsForm(SettingsForm):
'last_order_modification_date',
'allow_modifications_after_checkin',
'checkout_show_copy_answers_button',
+ 'show_checkin_number_user',
'primary_color',
'theme_color_success',
'theme_color_danger',
diff --git a/src/pretix/control/templates/pretixcontrol/event/settings.html b/src/pretix/control/templates/pretixcontrol/event/settings.html
index 09624f4822..1c2784f653 100644
--- a/src/pretix/control/templates/pretixcontrol/event/settings.html
+++ b/src/pretix/control/templates/pretixcontrol/event/settings.html
@@ -221,6 +221,7 @@
{% bootstrap_field sform.show_items_outside_presale_period layout="control" %}
{% bootstrap_field sform.last_order_modification_date layout="control" %}
{% bootstrap_field sform.allow_modifications_after_checkin layout="control" %}
+ {% bootstrap_field sform.show_checkin_number_user layout="control" %}