• Resolved carliotxs

    (@carliotxs)


    Hi,

    I recently deployed a website to production and need to reset the form id to #1.

    For example, New Form Entry #25 changes to New Form Entry #1.

    I tried deleting all the previous test submissions, but it didn’t solve the issue.

    Can you help me with this problem?

    Thanks in advance,

    Carlos

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @carliotxs,

    I hope things are going well for you.

    I tried deleting all the previous test submissions, but it didn’t solve the issue.

    It seems that the submission is kept in the database. Possibly that could be a reason.

    There is no direct method for resetting the submission ID. We need to export the form, reset the plugin, and re-import the form.

    —- If you want to clear the submission IDs by deleting the submissions, you can follow the given steps:

    —- Export the forms: https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#import-export
    -– Go to Forminator > Settings > Factory Reset https://wpmudev.com/docs/wpmu-dev-plugins/forminator/#data
    — The factory reset process will remove all the submissions and forms and set the plugin as fresh
    or running two SQL commands:

    TRUNCATE TABLE PRFIX_frmt_form_entry;
    TRUNCATE TABLE PRFIX_frmt_form_entry_meta;  

    Replace the PRFIX_ with your correct prefix.

    -– Import the form back with no submission.
    — So, the next submission ID will start from the beginning.

    On the safe side, you can create a site backup before doing such operations on the site.


    Kind Regards,
    Imran Khan

    Plugin Support Dmytro – WPMU DEV Support

    (@wpmudevsupport16)

    Hello @carliotxs,

    I hope you’re doing great today!

    We haven’t heard back from you for some time, so I’ll go ahead and mark this thread as resolved. Please feel free to reopen it, in case you need our further assistance.

    Best Regards,
    Dmytro

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Reset Form Submissions’ is closed to new replies.