---
title: "Deleting Submissions - Convert Forms"
description: "Spam entries, test submissions, and data you no longer need can be removed from the Submissions list. Convert Forms uses a two-step process: you trash"
url: "https://www.tassos.gr/docs/convert-forms/submission-management/delete"
date: "2026-06-22T14:33:15+00:00"
language: "en-GB"
---

[ Home ](https://www.tassos.gr/index.php?option=com_content&view=category&layout=blog&id=24&Itemid=1088) / [ Convert Forms ](https://www.tassos.gr/index.php?option=com_content&view=category&id=43) / [ Submission Management ](https://www.tassos.gr/index.php?option=com_content&view=category&id=150)

#  Deleting Submissions

Spam entries, test submissions, and data you no longer need can be removed from the Submissions list. Convert Forms uses a two-step process: you trash submissions first, which is reversible, then empty the trash to delete them for good.

## [Trashing submissions](#trashing-submissions)

1. Log into your Joomla backend.
2. Go to **Components -&gt; Convert Forms -&gt; Submissions**.
3. Tick the checkbox next to each submission you want to remove. To select everything on the page, use the checkbox in the column header.
4. Click the **Change Status** button in the toolbar and choose **Trash**.

 Trashed submissions disappear from the default view but aren't gone yet. You can still recover them.

## [Recovering a trashed submission](#recovering-a-trashed-submission)

1. Set the **Status** filter to **Trashed** to see your trashed submissions.
2. Select the ones you want back.
3. Use **Change Status** to set them to Published or Unpublished again.

## [Deleting permanently](#deleting-permanently)

To remove trashed submissions for good:

1. Set the **Status** filter to **Trashed**.
2. Tick the submissions you want to delete (or select all).
3. Click **Empty Trash** in the toolbar and confirm.

 This step is permanent. Once you empty the trash, those submissions can't be recovered.

## [Deleting submissions directly from the database](#deleting-submissions-directly-from-the-database)

For bulk cleanups, you can remove submissions straight from the database with an SQL query. This is faster than trashing rows by hand when you need to clear thousands of submissions at once. Back up your database before running any query, and replace the `#__` prefix with your own table prefix.

### [How to delete the submissions of a specific form](#how-to-delete-the-submissions-of-a-specific-form)

To delete every submission belonging to a particular form, run the following query and replace *FORM\_ID* with your form's ID:

 ```
DELETE c, m
FROM `#__convertforms_conversions` AS c

LEFT JOIN `#__convertforms_submission_meta` AS m

  ON m.submission_id = c.id
WHERE c.form_id = FORM_ID;
```

### [How to reset the submissions counter](#how-to-reset-the-submissions-counter)

To wipe all submissions and reset the auto-increment counter back to 1, run:

 ```
TRUNCATE `#__convertforms_conversions`;

ALTER TABLE `#__convertforms_conversions` AUTO_INCREMENT = 1;

TRUNCATE `#__convertforms_submission_meta`;

ALTER TABLE `#__convertforms_submission_meta` AUTO_INCREMENT = 1;

```

## [Deleting submissions automatically](#deleting-submissions-automatically)

If you want old submissions cleared on a schedule instead of by hand, Convert Forms can do it for you. See [Automatically Delete Submissions Older Than X Days](https://www.tassos.gr/docs/convert-forms/functionality/automatically-delete-submissions-older-than-x-days).

 Last updated on Jun 22nd 2026 15:06

## Schema

```json
{
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "name": "Home",
            "item": "https://www.tassos.gr"
        },
        {
            "@type": "ListItem",
            "position": 2,
            "name": "Home",
            "item": "https://www.tassos.gr/docs"
        },
        {
            "@type": "ListItem",
            "position": 3,
            "name": "Convert Forms",
            "item": "https://www.tassos.gr/docs/convert-forms"
        },
        {
            "@type": "ListItem",
            "position": 4,
            "name": "Submission Management",
            "item": "https://www.tassos.gr/docs/convert-forms/submission-management"
        },
        {
            "@type": "ListItem",
            "position": 5,
            "name": "Deleting Submissions",
            "item": "https://www.tassos.gr/docs/convert-forms/submission-management/delete"
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@type": "Article",
    "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.tassos.gr/docs/convert-forms/submission-management/delete"
    },
    "headline": "Deleting Submissions",
    "image": {
        "@type": "ImageObject",
        "url": "https://www.tassos.gr/"
    },
    "publisher": {
        "@type": "Organization",
        "name": "Tassos",
        "logo": {
            "@type": "ImageObject",
            "url": "https://www.tassos.gr/https://www.tassos.gr/media/brand/logo-text.png"
        }
    },
    "author": {
        "@type": "Person",
        "name": "Tassos Marinos",
        "url": "https://www.tassos.gr/docs/convert-forms/submission-management/delete"
    },
    "datePublished": "2026-06-22T10:37:51+03:00",
    "dateCreated": "2026-06-22T10:37:51+03:00",
    "dateModified": "2026-06-22T15:19:54+03:00"
}
```
