Submission Limit

If you want to disable your form after a certain number of submissions, conditionally display your form based on the entry count.

{% set totalEntries = craft.sproutForms.entries.formHandle('contact').count() %}

{# Use a specific number or a dynamic value like globalSet.submissionLimit #}
{% if totalEntries > 49 %}
    Try again next time!
{% else %}
    {{ craft.sproutForms.displayForm('contact') }}
{% endif %}
Last Updated: 11/23/2023, 10:32:53 PM